使用asp.net调用谷歌地图api示例
程序员文章站
2024-02-21 18:29:52
asp.net调用谷歌地图api,需要注意js引入的先后顺序,复制一下代码即可测试
asp.net调用谷歌地图api,需要注意js引入的先后顺序,复制一下代码即可测试
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title>//在这里要注意js引入的先后顺序 <link href="mapjs/jquery.ui.base.css" rel="external nofollow" rel="stylesheet" type="text/css" /> <link href="mapjs/jquery.ui.theme.css" rel="external nofollow" rel="stylesheet" type="text/css" /> <script src="jquery-1.9.1.js" type="text/javascript"></script> <script src="mapjs/jquery.ui.core.js" type="text/javascript"></script> <script src="mapjs/jquery.ui.widget.js" type="text/javascript"></script> <script src="mapjs/jquery.ui.position.js" type="text/javascript"></script> <script src="mapjs/jquery.ui.tooltip.js" type="text/javascript"></script> <link href="mapjs/demos.css" rel="external nofollow" rel="stylesheet" type="text/css" /> <style type="text/css"> .photo { width: 300px; text-align: center; } .photo .ui-widget-header { margin: 1em 0; } .map { width: 350px; height: 350px; } .ui-tooltip { max-width: 350px; } </style> <script type="text/javascript"> $(function () { $(document).tooltip({ items: "img, [data-geo], [title]", content: function () { var element = $(this); if (element.is("[data-geo]")) { var text = element.text(); return "<img class='map' alt='" + text + "' src='http://maps.google.com/maps/api/staticmap?" + "zoom=11&size=350x350&maptype=terrain&sensor=false¢er=" + text + "'>"; } if (element.is("[title]")) { return element.attr("title"); } if (element.is("img")) { return element.attr("alt"); } } }); $('#button1').click(function () { $('#aname').text($('#text1').val()); $('#aname').attr('href', "http://maps.google.com/maps?q="+$('#text1').val()+"&z=11"); }) }); </script> </head> <body> <div class="ui-widget photo"> <div class="ui-widget-header ui-corner-all"> <input id="text1" type="text" value="china,上海" /><input id="button1" type="button" value="设置" /> <h3> <a href="http://maps.google.com/maps?q=china,上海&z=11" rel="external nofollow" data-geo id="aname">china,上海</a></h3> </div> </div> </body> </html>
大家可以点击复制测试一下
上一篇: 浅析Java中Data类的应用
下一篇: Eclipse中自动重构实现探索
推荐阅读
-
使用asp.net调用谷歌地图api示例
-
Android 调用百度地图API示例
-
通过HttpClient 调用ASP.NET Web API示例
-
JS使用百度地图API自动获取地址和经纬度操作示例
-
详解vue项目中调用百度地图API使用方法
-
详解vue项目中调用百度地图API使用方法
-
JS使用百度地图API自动获取地址和经纬度操作示例
-
通过HttpClient 调用ASP.NET Web API示例
-
c#两种方式调用google地球,调用COM API以及调用GEPLUGIN 与js交互,加载kml文件,dae文件。将二维高德地图覆盖到到三维谷歌地球表面。
-
c#两种方式调用google地球,调用COM API以及调用GEPLUGIN 与js交互,加载kml文件,dae文件。将二维高德地图覆盖到到三维谷歌地球表面。