Javascriptを使用してGoogleマップマーカーの色を変更する方法を知っていただけますか。
次のコードを使用してマーカーを作成しました
marker = new google.maps.Marker({
position: new google.maps.LatLng(locations[i][1],
locations[i][2]),
animation: google.maps.Animation.DROP,
map: map
});
Google Maps API v3では、マーカーアイコンを変更してみることができます。緑色のアイコンの使用例:
marker.setIcon('http://maps.google.com/mapfiles/ms/icons/green-dot.png')
または、マーカーの初期化の一部として:
marker = new google.maps.Marker({
icon: 'http://...'
});
他の色:
等。
strokeColor
プロパティを使用できます。
var marker = new google.maps.Marker({
id: "some-id",
icon: {
path: google.maps.SymbolPath.FORWARD_CLOSED_ARROW,
strokeColor: "red",
scale: 3
},
map: map,
title: "some-title",
position: myLatlng
});
他の可能性については このページ をご覧ください。
正常に動作するこのコードを使用できます。
var pinImage = new google.maps.MarkerImage("http://www.googlemapsmarkers.com/v1/009900/");
var marker = new google.maps.Marker({
position: yourlatlong,
icon: pinImage,
map: map
});
google Chart APIを使用して、オンザフライでrgbコードを使用して任意の色を生成できます。
例:#ddd色のマーカー:
http://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=%E2%80%A2|ddd
上記のように含む
var marker = new google.maps.Marker({
position: marker,
title: 'Hello World',
icon: 'http://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=%E2%80%A2|ddd'
});
1つのマップに設定する船が4つあるので、Google Developersの例を使用して、それをひねりました
https://developers.google.com/maps/documentation/javascript/examples/icon-complex
次の関数で、さらに3つのカラーオプションを設定します。
function setMarkers(map, locations) {
...
var image = {
url: 'img/bullet_amarelo.png',
// This marker is 20 pixels wide by 32 pixels tall.
size: new google.maps.Size(40, 40),
// The Origin for this image is 0,0.
Origin: new google.maps.Point(0,0),
// The anchor for this image is the base of the flagpole at 0,32.
anchor: new google.maps.Point(0, 40)
};
var image1 = {
url: 'img/bullet_azul.png',
// This marker is 20 pixels wide by 32 pixels tall.
size: new google.maps.Size(40, 40),
// The Origin for this image is 0,0.
Origin: new google.maps.Point(0,0),
// The anchor for this image is the base of the flagpole at 0,32.
anchor: new google.maps.Point(0, 40)
};
var image2 = {
url: 'img/bullet_vermelho.png',
// This marker is 20 pixels wide by 32 pixels tall.
size: new google.maps.Size(40, 40),
// The Origin for this image is 0,0.
Origin: new google.maps.Point(0,0),
// The anchor for this image is the base of the flagpole at 0,32.
anchor: new google.maps.Point(0, 40)
};
var image3 = {
url: 'img/bullet_verde.png',
// This marker is 20 pixels wide by 32 pixels tall.
size: new google.maps.Size(40, 40),
// The Origin for this image is 0,0.
Origin: new google.maps.Point(0,0),
// The anchor for this image is the base of the flagpole at 0,32.
anchor: new google.maps.Point(0, 40)
};
...
}
そして、以下のFORで、各船に1色を設定しました。
for (var i = 0; i < locations.length; i++) {
...
if (i==0) var imageV=image;
if (i==1) var imageV=image1;
if (i==2) var imageV=image2;
if (i==3) var imageV=image3;
...
# remember to change icon: image to icon: imageV
}
最終結果:
Google Charts API を使用することをお勧めします。テキスト、テキストの色、塗りつぶしの色、アウトラインの色を指定できるため、すべて16進数のカラーコードを使用します。赤の#FF0000。次のように呼び出すことができます。
function getIcon(text, fillColor, textColor, outlineColor) {
if (!text) text = '•'; //generic map dot
var iconUrl = "http://chart.googleapis.com/chart?cht=d&chdp=mapsapi&chl=pin%27i\\%27[" + text + "%27-2%27f\\hv%27a\\]h\\]o\\" + fillColor + "%27fC\\" + textColor + "%27tC\\" + outlineColor + "%27eC\\Lauto%27f\\&ext=.png";
return iconUrl;
}
次に、マーカーを作成するときに、アイコンプロパティをそのように設定します。ここで、myColor変数は16進値(ハッシュ記号を除く)です。
var marker = new google.maps.Marker({
position: new google.maps.LatLng(locations[i][1], locations[i][2]),
animation: google.maps.Animation.DROP,
map: map,
icon: getIcon(null, myColor, myColor2, myColor3)
});
テキストと塗りつぶし色のみを設定する必要がある場合は、http://chart.googleapis.com/chart?chst=d_map_pin_letter&chld=•|FF0000
を使用すると、解読が少し簡単になりますが、代替URLとして使用できます。
khurramの答えは、Google Charts APIにリダイレクトするサードパーティのサイトを指します。これは、その人がサーバーを停止した場合、あなたがホースで接続されていることを意味します。 Google APIが提供する柔軟性と、Googleに直接アクセスする信頼性があることを好みます。色ごとに値を指定しないと、機能しません。
受け入れられた答えを拡張するには、http://chart.googleapis.com
のAPIを使用して、任意の色のカスタムMarkerImages
を作成できます
色の変更に加えて、マーカーの形状も変更されますが、これは望ましくない場合があります。
const marker = new window.google.maps.Marker(
position: markerPosition,
title: markerTitle,
map: map)
marker.addListener('click', () => marker.setIcon(changeIcon('00ff00'));)
const changeIcon = (newIconColor) => {
const newIcon = new window.google.maps.MarkerImage(
`http://chart.googleapis.com/chart?
chst=d_map_spin&chld=1.0|0|${newIconColor}|60|_|%E2%80%A2`,
new window.google.maps.Size(21, 34),
new window.google.maps.Point(0, 0),
new window.google.maps.Point(10, 34),
new window.google.maps.Size(21,34)
);
return newIcon
}
Googleまたは外部APIが提供する限られたアイコンセットに依存してマーカーアイコンを生成することを好まなかった点を除いて、BahadırYağanの回答が本当に気に入りました。最初の解決策は次のとおりです。
var marker = new google.maps.Marker({ id: "some-id", icon: { path: google.maps.SymbolPath.FORWARD_CLOSED_ARROW, strokeColor: "red", scale: 3 }, map: map, title: "some-title", position: myLatlng });
そして、ここに私の改善されたソリューションがあります:
var marker = new google.maps.Marker({
position: myLatlng,
icon:{
path: 'm 12,2.4000002 c -2.7802903,0 -5.9650002,1.5099999 -5.9650002,5.8299998 0,1.74375 1.1549213,3.264465 2.3551945,4.025812 1.2002732,0.761348 2.4458987,0.763328 2.6273057,2.474813 L 12,24 12.9825,14.68 c 0.179732,-1.704939 1.425357,-1.665423 2.626049,-2.424188 C 16.809241,11.497047 17.965,9.94 17.965,8.23 17.965,3.9100001 14.78029,2.4000002 12,2.4000002 Z',
fillColor: '#00FF00',
fillOpacity: 1.0,
strokeColor: '#000000',
strokeWeight: 1,
scale: 2,
anchor: new google.maps.Point(12, 24),
},
});
特定のピンアイコンが必要だったので、inkscapeで作成し、SVGファイルを開いてsvgパスをコードへのパスにコピーしましたが、これは、アイコンオブジェクト。
結果は次のとおりです。