收藏
回答

开发版地图闪退!!!!!!!!

开发版地图闪退!!!!!!!!


型号:安卓

现象:再次调用地图

结果:闪退!!!!

回答关注问题邀请回答
收藏

3 个回答

  • 黄思程
    黄思程
    2017-12-08

    你好,请提供一下出现问题的机型和微信版本,以及能复现问题的简单代码示例。

    2017-12-08
    有用
    回复
  • 逍遥猎人
    逍遥猎人
    2017-12-09

    正式版也在闪退,地图上有标记物,

    net.sRequest(url, null, params, header, function(data){

    if(data.data.error == 0){

    var syoreList = data.data.data;

    syores=[];

    for(var i =0; i < syoreList.length; i++){

    var obj = {};

    obj.distance =syoreList[i].distance+'Km';

    obj.iconPath ="/images/logo11.png";

    obj.id =syoreList[i].id;

    obj.latitude =syoreList[i].latitude;

    obj.longitude =syoreList[i].longitude;

    obj.title =syoreList[i].title;

    obj.address =syoreList[i].address;

    obj.width = 38;

    obj.height = 44;

    syores[i] = obj;

    }

    console.log(that,syores);

    that.setData({

    markers:syores

    });


    var res = {latitude:searchLatitude,longitude:searchLongitude};

    app.updateLastLocation(res);

    }

    });




    <map id="map" class="mymap" show-location="true" longitude="{{longitude}}" latitude="{{latitude}}" scale="{{accuracy}}" controls="{{controls}}"  markers="{{markers}}" bindmarkertap="markertap" bindtap="tap" controls="{{controls}}" bindcontroltap="controltap" polyline="{{polyline}}" bindregionchange="regionchange" show-location style="height:{{height}}%"></map>


    2017-12-09
    有用
    回复
  • weixiao
    weixiao
    2017-12-08

    我也出现了这么问题,所有的我这边所有的安卓都出现了。微信版本:6.5.22

    2017-12-08
    有用
    回复
登录 后发表内容