我找到了一个使用JQuery和amp;来显示带有多个标记的Google地图的代码。 XML。
查看实时Example
我有像这样的marker.js
$(document).ready(function() {
$("#map").css({
height: 500,
width: 800
});
var myLatLng = new google.maps.LatLng(17.74033553, 83.25067267);
MYMAP.init('#map', myLatLng, 11);
$("#map");
MYMAP.placeMarkers('markers.xml');
});
var MYMAP = {
map: null,
bounds: null
}
MYMAP.init = function(selector, latLng, zoom) {
var myOptions = {
zoom:zoom,
center: latLng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
this.map = new google.maps.Map($(selector)[0], myOptions);
this.bounds = new google.maps.LatLngBounds();
}
MYMAP.placeMarkers = function(filename) {
$.get(filename, function(xml){
$(xml).find("marker").each(function(){
var name = $(this).find('name').text();
var address = $(this).find('address').text();
var icon = $(this).find('icon').text();
// create a new LatLng point for the marker
var lat = $(this).find('lat').text();
var lng = $(this).find('lng').text();
var point = new google.maps.LatLng(parseFloat(lat),parseFloat(lng));
// extend the bounds to include the new point
MYMAP.bounds.extend(point);
var marker = new google.maps.Marker({
position: point,
map: MYMAP.map
});
var infoWindow = new google.maps.InfoWindow();
var html='<strong>'+name+'</strong.><br />'+address;
google.maps.event.addListener(marker, 'click', function() {
infoWindow.setContent(html);
infoWindow.open(MYMAP.map, marker);
});
MYMAP.map.fitBounds(MYMAP.bounds);
});
});
}
&安培;我正在使用的xml代码。
<marker>
<name>.hu</name>
<address>near Viswa Teja School, Thatichetlapalem, Visakhapatnam</address>
<lat>47.29</lat>
<lng>19.05</lng>
</marker>
我想要的是自定义标记图标&amp;每个标记的标签。
是否可以在上述代码中工作?
或者我怎样才能做到这一点?
答案 0 :(得分:2)
您可以使用以下内容执行此操作:
new google.maps.Marker({
position: new google.maps.LatLng(latitude, longitude),
map: MYMAP.map,
icon: new google.maps.MarkerImage("<REPLACE_WITH_MARKER_IMAGE_URL>")});
此外,here是相关文档。
答案 1 :(得分:-1)