作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对 ASP 很陌生,我有一些小项目要做,所以我需要一些帮助。我需要编写 asp 页面,该页面将从数据库读取纬度和经度并在 map 上放置标记。这是我当前的代码
function initialize() {
// initialize the map
var latlng = new google.maps.LatLng(-25.363882,131.044922);
var myOptions = {
zoom: 8,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
// define custom image
var image = 'Computer.GIF';
// load data from db
<%
conn=Server.CreateObject("ADODB.Connection");
conn.Provider="Microsoft.Jet.OLEDB.4.0";
conn.Open("c:/webdata/dbATMManager999.mdb");
rs=conn.execute("select * from ATM WHERE LATITUDE IS NOT NULL AND LONGITUDE IS NOT NULL");
while( !rs.eof ) {
%>
var currLatLng = new google.maps.LatLng(<%rs.Fields("LATITUDE");%>, <%rs.Fields("LONGITUDE");%>);
var customMarker = new google.maps.Marker({
position: currLatLng,
map: map,
icon: image
});
<% rs.movenext();
...
这一行new google.maps.LatLng(<%rs.Fields("纬度");%>, <%rs.Fields("经度")%>);导致问题。由于某种原因,我收到运行时错误:Microsoft JScript 运行时错误:参数数量错误或属性分配无效
最佳答案
您的经度和纬度未写入页面。您需要在Response中添加“=”符号。写入纬度和经度。 <%=rs.Fields("LATITUDE") %> 相当于 <% Response.Write("Test") %>。
这是您需要进行的更改。
var currLatLng = new google.maps.LatLng(<%rs.Fields("LATITUDE");%>, <%rs.Fields("LONGITUDE");%>);
到
var currLatLng = new google.maps.LatLng(<%=rs.Fields("LATITUDE");%>, <%=rs.Fields("LONGITUDE");%>);
关于javascript - 谷歌地图和 ASP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3272766/
leaflet:一个开源并且对移动端友好的交互式地图 JavaScript 库 中文文档: https://leafletjs.cn/reference.html 官网(英文): ht
我是一名优秀的程序员,十分优秀!