这是我在页面中使用的代码,用于将带有指针数据库的地图显示为纬度和经度。
此代码显示谷歌地图中表示的正常图像,但由于我需要灰度地图,因此使用谷歌 api 进行了尝试并获得了 JSON 代码,但我担心如何用完地图以灰度显示的 json 代码。
这是我页面中的脚本:- 下面是来自 Google 地图的 JSON 代码
<script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAfJRXkzFVohAp-Okxjr5B7xR_ljEFASla9K2hAbTooXc5TaM12hShF8opt9JtUXJpFbuViIHs05-CNg" type="text/javascript">
</script>
<script type="text/javascript">
//<![CDATA[
$(document).ready(function(){
if (GBrowserIsCompatible()) {
var latitude = <?php echo $store_details->latitude; ?>;
var longitude = <?php echo $store_details->longitude; ?>;
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(latitude,longitude),13);
var marker = new GMarker(new GLatLng(latitude,longitude));
map.addOverlay(marker);
}
});
//]]>
</script>
这是 JSON 代码:
[ { stylers: [ { saturation: -100 }, { visibility: "on" } ] } ]