Google Maps API3 with default Popup & Marker? -


is possible show default google maps icon , popup on custom map?

the default 1 address, title directions nearby etc etc.

this how i've got set , working fine apart marker..

 var map;  jquery(function($) {     function initialize() {       var styles = [         {           stylers: [             { "saturation": -100 }           ]         }       ];       var styledmap = new google.maps.styledmaptype(styles,         {name: "styled map"});       var mapoptions = {         zoom: 11,         center: new google.maps.latlng(55.6468, 37.581),         maptypecontroloptions: {           maptypeids: [google.maps.maptypeid.roadmap, 'map_style']         }       };       var map = new google.maps.map(document.getelementbyid('map'),                   mapoptions);        //associate styled map maptypeid , set display.       map.maptypes.set('map_style', styledmap);       map.setmaptypeid('map_style');    }     google.maps.event.adddomlistener(window, 'load', initialize);  }); 

is possible show default google maps icon , popup on custom map?

the default marker easy, see the documentation, answer google maps default infowindow no, can create own infowindow looks similar , has similar functionality.


Comments

Popular posts from this blog

How to mention the localhost in android -

php - Calling a template part from a post -