Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List All Google Map Marker Images [closed]

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

like image 200
Dau Thanh Hai Avatar asked May 05 '10 09:05

Dau Thanh Hai


People also ask

What are the icons on Google Maps?

Google Maps uses symbols to indicate businesses and organizations according to what they are; these symbols appear when you have a location zoomed in to an area a few miles wide or smaller. Outdoor locations are marked in green; government and community centers are in brown.

What is Google map InfoWindow?

An InfoWindow displays content (usually text or images) in a popup window above the map, at a given location. The info window has a content area and a tapered stem. The tip of the stem is attached to a specified location on the map. Info windows appear as a Dialog to screen readers.


1 Answers

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) ); 
like image 86
user2369884 Avatar answered Nov 04 '22 04:11

user2369884