So finden in der Nähe Krankenhäuser mit google map api und javascript

var MapApiApplication = {
   myCurrentPosition : "",
   mapOptions : "",
   marker : "",
   initialize : function(){
      MapApiApplication.myCurrentPosition = new google.maps.LatLng(10.112293000000000000, 76.352684500000010000);
      MapApiApplication.mapOptions = {
        zoom: 13,
        center: MapApiApplication.myCurrentPosition,
        mapTypeId: google.maps.MapTypeId.ROADMAP
      };
      MapApiApplication.map = new google.maps.Map(document.getElementById('map-canvas'), MapApiApplication.mapOptions);
      MapApiApplication.marker = new google.maps.Marker({
         position: MapApiApplication.myCurrentPosition,
         map: MapApiApplication.map,
         title: 'Here You are'
      });
   }, 
}; 

Habe ich die aktuelle position von Längen-und Breitengrad. Wie kann ich finden in der Nähe Krankenhäuser Orte, die nur mithilfe von javascript und google maps api.

InformationsquelleAutor Deepu S A | 2013-09-10

Schreibe einen Kommentar