1 parent 65dd0a9 commit 669c6baCopy full SHA for 669c6ba
1 file changed
examples/leaflet/iPortalQueryMaps.html
@@ -67,10 +67,10 @@ <h4>iPortal QueryMaps使用示例</h4>
67
pageSize:mapsPageSize,
68
};
69
//Maps查询初始化工作
70
- var iPoortalMaps=new SuperMap.iPortal(iPortalUrl);
+ var iPortalMaps=new SuperMap.iPortal(iPortalUrl);
71
$(document).ready(function () {
72
//加载完DOM后,开始地图数据查询并添加
73
- iPoortalMaps.load().then(function () {
+ iPortalMaps.load().then(function () {
74
queryMaps(queryParams);
75
});
76
//为分页列表项绑定事件
@@ -93,7 +93,7 @@ <h4>iPortal QueryMaps使用示例</h4>
93
94
// 查询iPortal中的地图
95
function queryMaps(queryParams){
96
- iPoortalMaps.queryMaps(queryParams).then(function (mapsData) {
+ iPortalMaps.queryMaps(queryParams).then(function (mapsData) {
97
//返回的结果集,需要查看可打开下行代码
98
// console.log(mapsData);
99
$("#mapList").children().remove();
0 commit comments