Leaftlet角度叠加图像问题

时间:2016-07-11 11:16:12

标签: android angularjs ionic-framework leaflet native

我使用了传单插件来开发Ionic混合应用程序。当我把它放在原生环境中时,我发现发生了很多问题。反正有没有解决这个问题?

问题1:放大和缩小图像会随机丢失。

问题2:点击放大或缩小按钮时,它将变为全屏。

我录制了一段视频来展示问题here

以下是我为平面布置图撰写的代码

var local_icons = {
    defaultIcon: {
    }
  }

    angular.extend($scope, {
    defaults: {
      // scrollWheelZoom: false,
      crs: 'Simple',
      maxZoom: 3
    },
            maxBounds: leafletBoundsHelpers.createBoundsFromArray([[-350, -620], [350, 620]]),
    // maxBounds: leafletBoundsHelpers.createBoundsFromArray([[-540, -960], [540, 960]]),
    layers: {
        baselayers: {
            pwtc: {
                name: 'PWTC',
                type: 'imageOverlay',
                url: 'app/hbe/lib/img/floorplan/hall1.jpg',
                                    bounds:     [[-540, -960], [540, 960]],
                                    // bounds:  [[-540, -960], [540, 960]],
                                    maxZoom: 3,
                                    // minZoom: 1,
                                doubleClickZoom: false,
                                scrollWheelZoom: false,
                layerParams: {
                }
            }
        },
    },
            center: {
        lat: 0,
        lng: 0,
        zoom: 0
    },
});

0 个答案:

没有答案