|
@ -38,15 +38,15 @@ const ProjectAddModel = ({ dispatch, actions, user, modelData, close, success, f |
|
|
if (e) { |
|
|
if (e) { |
|
|
placeSearch.setCity(e.poi.adcode); |
|
|
placeSearch.setCity(e.poi.adcode); |
|
|
placeSearch.search(e.poi.name, function (status, result) { |
|
|
placeSearch.search(e.poi.name, function (status, result) { |
|
|
form.setFieldValue('longitude', result.poiList.pois[0].location.lat) |
|
|
form.setFieldValue('longitude', result.poiList.pois[0].location.lng) |
|
|
form.setFieldValue('latitude', result.poiList.pois[0].location.lng) |
|
|
form.setFieldValue('latitude', result.poiList.pois[0].location.lat) |
|
|
}) //关键字查询查询
|
|
|
}) //关键字查询查询
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
auto.on("select", select);//注册监听,当选中某条记录时会触发
|
|
|
auto.on("select", select);//注册监听,当选中某条记录时会触发
|
|
|
map.on('click', function (e) { //点击地图获取经纬度
|
|
|
map.on('click', function (e) { //点击地图获取经纬度
|
|
|
form.setFieldValue('longitude', e.lnglat.lat) |
|
|
form.setFieldValue('longitude', e.lnglat.lng) |
|
|
form.setFieldValue('latitude', e.lnglat.lng) |
|
|
form.setFieldValue('latitude', e.lnglat.lat) |
|
|
}); |
|
|
}); |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|