马帕尔地图类不存在



基本库是一个角js。

我正在尝试使用Mapael.js

绘制地图

但是,它不是使用错误创建的。

库版本:jQuery 1.11.3,Angular 1.5,jquery.mapael 2.0.0

错误消息:地图类map不存在

html

<div id="MapSearchResultPlot" class="div-theme" style="height: 450px; width: 100px; align: center;">
   <div id="ChildMap" class="map">
   </div>
</div>

javascript

var $world = $("#MapSearchResultPlot");
    $world.mapael({
        map: {
           //name: "usa_states",
           name: "world_countries",
           zoom: {
               enabled: true
               ,maxLevel: 10
               ,init: {
                    latitude: 40.717079,
                    longitude: -74.00116,
                    level: 0
                    //level: 10
                }
              },
              defaultPlot: {
                 type: 'circle' //'square','circle'
                 ,size:10
                 ,attrs: {fill: "#ff5454"}
             }
           },
           plots: {
           }
       });

也许为时已晚,但是我发布了此错误。

您的HTML必须看起来像这样:

<div class="mapcontainer">
    <div class="map">
        <span>Alternative content for the map</span>
    </div>
</div>

相关内容

  • 没有找到相关文章

最新更新