很简单的问题,PC上的google地图网页 为什么放手机上打不开了。附代码
代码很简单就是直接使用 google map api 。。。
html文件内容如下:
<script src=http://maps.google.com/maps?file=api&v=2&&key=ABQIAAAA6z5x7SKYVbp2Iamhk_aewRStAkgfnVhbORlEwBI6cdYoS0SPhRQ00WD-e0nh13cv6JJwoS8TRIOfDA type="text/javascript"> </script> <script type="text/javascript"> function initialize() { if (GBrowserIsCompatible()) { var map = new GMap2(document.getElementById("map_canvas")); map.setCenter(new GLatLng(39.917, 116.397), 14); } } </script> <body bgcolor=#f9fce9 leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onload="initialize()"> <div id="map_canvas" style="width: 240px; height: 320px"></div>