web-dev-qa-db-ja.com

すべてのGoogleマップマーカー画像を一覧表示する

Googleのイメージマーカーをよく使用しますか、それをサーバーにコピーしますか? Googleから利用可能なマーカーのすべての画像リストを取得できる場所次のような画像のリスト:

dd-end

dd-start

49
Dau Thanh Hai
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)
);
3
user2369884