Browse Source

地图搜索后对焦第一个

shibei
mk 2 years ago
parent
commit
9e9ff3d310
  1. 4
      miniprogram/subpages/knight/pages/knight/stageMap/index.js

4
miniprogram/subpages/knight/pages/knight/stageMap/index.js

@ -403,7 +403,9 @@ Page({
// visible: true, // visible: true,
searchResult: result, searchResult: result,
markers:result.map(item=>({id:item.id,latitude:item.location.lat,longitude:item.location.lng,width:28,height:32,label:{content:item.stageName,color:'#f00',textAlign:'center'}})), markers:result.map(item=>({id:item.id,latitude:item.location.lat,longitude:item.location.lng,width:28,height:32,label:{content:item.stageName,color:'#f00',textAlign:'center'}})),
contentList:result.map(item=>({stageName:item.stageName,stageDescription:item.stageDescription})) contentList:result.map(item=>({stageName:item.stageName,stageDescription:item.stageDescription})),
'personalInfo.latitude': result[0].location.lat,
'personalInfo.longitude': result[0].location.lng,
}) })
} }
}, },

Loading…
Cancel
Save