1

我一直在尝试在 ionic 项目中实现标记和路径跟踪到传单地图,并且一直在使用以下 angularJS 和此处找到的传单文档/示例。但是,在实施时,我无法看到引脚。这是我的JSFiddle。我还包含了我的一些代码,因为它不会让我提交我的问题,但它在我的 JSFiddle 上存在相同的渲染问题。任何帮助都会很棒!

如果我有 JSFiddle 链接,我将被迫显示代码,所以这就是我得到的,但我认为我的代码中没有解决方案。如果一些图书馆或电话问题。

我的index.html

<style>
.scroll { height: 100%; }
map {
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
}
  .angular-leaflet-map {
  display: block;
    width: 100%;
    height: 100%;
    background: #ffff;
  }
</style>
  </head>

  <body ng-app="starter">
    <ion-nav-view></ion-nav-view>
  </body>

我的pathmap.html

<ion-view view-title="Activities" >
<ion-content ng-controller="PathController" class="has-header">

 <leaflet center="center" paths="paths" defaults="defaults"></leaflet>

 </ion-content>
</ion-view>

控制器.js

    angular.module('starter.controllers', ['ionic', 'leaflet-directive', 'ngCordova'])

[......]


.controller("PathController", [ '$scope', function($scope) {
        angular.extend($scope, {
            center: {
             lat: 25.074521,
            lng: -77.348191,
            zoom: 14
            },
            paths: {
                p1: {
                    color: '#33CCCC',
                    weight: 3,
                    latlngs: [
                        { lat: 25.074521, lng: -77.348191 },
                        { lat: 25.074501, lng: -77.317485 },
                        { lat: 25.081517, lng: -77.319116 },
                        { lat: 25.078077, lng: -77.345831 }


                    ],
                }
            },
            markers: {
                marker1: {
                    lat: 25.074521,
                    lng: -77.348191,
                    icon: {
                        url: 'img/nirvana.jpg',
                        iconSize: [80, 80],
                        iconAnchor: [40, 80],
                        popupAnchor: [0, 0],
                        shadowSize: [0, 0],
                        shadowAnchor: [0, 0]
                    }
                },
                marker2: {
                    lat: 25.074501,
                    lng: -77.317485,
                    icon: {
                        iconUrl: 'img/logo.png',
                        iconSize: [800, 800],
                        iconAnchor: [400, 600],
                        popupAnchor: [40, 40],

                    }
                },
                marker3: {
                    lat: 25.081517,
                    lng: -77.319116,
                    icon: {
                        iconUrl: 'img/logo.png',
                        iconSize: [800, 800],
                        iconAnchor: [400, 600],
                        popupAnchor: [40, 40],

                    }
                },
                marker4: {
                    lat: 25.078077,
                    lng: -77.345831,
                    icon: {
                        iconUrl: 'img/logo.png',
                        iconSize: [800, 800],
                        iconAnchor: [400, 600],
                        popupAnchor: [40, 40],

                    }
                },


            },
            defaults: {
                scrollWheelZoom: false
            }
        });
    }]);
4

2 回答 2

1

您必须在传单指令中调用标记。

<leaflet center="center" paths="paths" defaults="defaults" markers="markers"></leaflet>

希望它会帮助你。

于 2015-07-07T12:29:09.393 回答
0

原来我没有markers="markers"并且需要更新我的leaflet.js希望这可以帮助其他人。

没有markers="markers"和旧的leaflet.js

在此处输入图像描述


使用markers="markers"并更新了leaflet.js

在此处输入图像描述

于 2015-07-09T01:06:21.210 回答