我只是想知道,如何在坐标(38.0,-98.0)上添加一个标记,在坐标(45.0,-100.0)上添加另一个标记到我正在制作的自定义谷歌地图?到目前为止,这是我拥有的代码:
<script type="text/javascript">
var map;
var grayStyles = [
{
featureType: "all",
stylers: [
{ saturation: -100 },
]
},
];
var mapOptions = {
center: new google.maps.LatLng(38, -98),
zoom: 5,
styles: grayStyles,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
function initialize() {
map = new google.maps.Map(document.getElementById("map_canvas"), mapOptions);
}
</script>