List All Google Map Marker Images

Google MapsGoogle Maps-Markers

Google Maps Problem Overview


Do you often use image marker from google or copy it to your server? Where I can get all images list of available markers from google? The list of images such as :

dd-end

dd-start

Google Maps Solutions


Solution 1 - Google Maps

var pinIcon = new google.maps.MarkerImage(
    "http://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=%E2%80%A2|00D900",
    null, /* size is determined at runtime */
    null, /* origin is 0,0 */
    null, /* anchor is bottom center of the scaled image */
    new google.maps.Size(12, 18)
);

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionDau Thanh HaiView Question on Stackoverflow
Solution 1 - Google Mapsuser2369884View Answer on Stackoverflow