一:根据IP获取城市
axios({
url: 'https://restapi.amap.com/v3/ip',
method: 'post',
params: {
ip: '101.88.147.146',
key:'官网申请Key'
},
}).then(function (resp) {
console.log(resp.data.city);
}).catch()
//以上代码亲测可用
二:定位用户经纬度
网页域名需支持https,否则报错地理定位拒绝。一下代码没有经过测试
var mapObj = new AMap.Map('iCenter');
mapObj.plugin('AMap.Geolocation', function () {
geolocation = new AMap.Geolocation({
enableHighAccuracy: false,//是否使用高精度定位,默认:true
timeout: 10000, //超过10秒后停止定位,默认:无穷大
maximumAge: 0, //定位结果缓存0毫秒,默认:0
convert: true, //自动偏移坐标,偏移后的坐标为高德坐标,默认:true
showButton: true, //显示定位按钮,默认:true
buttonPosition: