js百度地图怎么获取城市编码?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js百度地图怎么获取城市编码?相关的知识,希望对你有一定的参考价值。

参考技术A 百度地图里的geocoder
http://api.map.baidu.com/geocoder/v2/?ak=你的ak值&location=47.358015,123.970903&output=json
返回结果里有个 cityCode本回答被提问者采纳
参考技术B 区号追问

不是区号,是编码,怎么获取来着?

微信定位功能结合百度地图获取用户城市

需要结合百度地图的API,请先完成这篇文章的流程:《使用百度地图将经纬度转换成具体位置》

 

以vuejs为例

beforeMount () {
            var that = this;
            this.city = \'正在定位城市...\';
            this.wxapi.getWxConfig({
                url: window.location.href.split(\'#\')[0]
            }).then(_ => {
                if (+(_.returnCode) == 0) {
                    // 初始化微信配置
                    wx.config(_.data);
                    // 微信初始化事件
                    wx.ready(function(){
                        // 调用微信定位接口
                        wx.getLocation({
                            type: \'wgs84\', // 默认为wgs84的gps坐标,如果要返回直接给openLocation用的火星坐标,可传入\'gcj02\'
                            success: function (res) {
                                var latitude = res.latitude; // 纬度,浮点数,范围为90 ~ -90
                                var longitude = res.longitude; // 经度,浮点数,范围为180 ~ -180。
                                if (latitude && longitude) {
                                      window.getlocation = function (data) {
                                          Loader.hideAll();
                                          if (data.status == 0) {
                                              var city = data.result.addressComponent.city
                                              Toast("定位到当前城市为:" + city);
                                              that.city = city
                                              this.$store.state.city = city
                                          } else {
                                              Toast(\'地址解析失败,请手动选择城市\')
                                              that.$router.push(\'/cityselect\')
                                          }
                                      }

                                      Loader.show(\'正在定位...\');
                                      var o = document.createElement(\'script\');
                                      o.src = `http://api.map.baidu.com/geocoder/v2/?callback=getlocation&location=${latitude},${longitude}&output=json&pois=1&ak=PaY0aQpuk5ypaxL1bGH4y65nbitEd0u3`;
                                      document.documentElement.childNodes[0].appendChild(o);
                                  } else {
                                      Toast(\'微信定位失败,请手动选择城市\')
                                      that.$router.push(\'/cityselect\')
                                  }
                            }
                        });
                    });
                    // config信息验证失败会执行error函数,如签名过期导致验证失败,具体错误信息可以打开config的debug模式查看,也可以在返回的res参数中查看,对于SPA可以在这里更新签名。
                    wx.error(function(res){
                        that.city = "定位失败,请手动选择城市";
                        Toasrt(\'微信接口调用失败,请手动选择城市\')
                        that.$router.push(\'/cityselect\')
                    });
                } else {
                    Toast("获取微信配置失败" + _.msg);
                    that.city = "定位失败,请手动选择城市";
                    that.$router.push(\'/cityselect\')
                }
            })
        }

 

 

以上是关于js百度地图怎么获取城市编码?的主要内容,如果未能解决你的问题,请参考以下文章

百度地图怎么获取城市的编码cityCode

百度地图怎么获取城市的编码cityCode

javascript呼叫百度地图怎么获取所有省会城市的地标资讯?

Android百度地图开发怎么网络获取商家信息

uni app +vue 引用 百度地图API取位置,VUE用百度地图获取当前位置(城市)

百度地图API 怎么根据输入城市自动定位到该城市中心地点呢