问题标签 [ng-map]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
google-maps - Ionic Modal with ngMap using Google Place Autocomplete Won't Select Prediction
I'm using ngMap with Ionic 1.2.x and I've put together custom-control that contains a places autocomplete directive that in a plain HTML test works, but when I put it inside the ionic application and open it in a modal the on-place-changed event never triggers when clicking on the places autocomplete prediction. When I mouse over the list of place predictions the mouse cursor icon doesn't change seemingly indicating the elements are not available for clicking.
UPDATE
I found a reference to this issue on GitHub, but the solutions don't appear to work when in a modal according to the last couple posts where data-tap-disabled="true"
is used on pac-container
.
I've attached an abridge CodePen of the issue. It's really easy to replicate.
DIRECTIVE
javascript - ng-map 中加载 GeoJSON 的回调
这是通过ng-map中的map-data加载geoJSON文件的回调吗?我的代码看起来很简单:
我的 GeoJSON 加载了一些时间,我想为这个加载时间添加一些角度微调器。有可能做到这一点吗?
javascript - 如何更改 ng-map 标记的文本“A”和“B”
您好我想更改 ng-map 的标记文本。它应该分别显示“开始”和“结束”而不是“A”和“B”。
我确实提到了这个,但没有运气。它在标记上同时显示文本“start”和“A”。
此外,如果您观察,源和目的地之间的距离与实际谷歌地图显示的距离不同。
所以我在这里有三个问题。
1)更改标记文本“开始”而不是“A”
2) 源与目的地之间的距离
3)我想使用AngularJS点击“绘制地图”按钮来显示这张地图。
下面是我的代码。
javascript - ng-map vm.positions 不更新
我在 AngularJS 中使用 ng-map 指令。我有以下代码来生成标记。我将每个标记保存在数组 lat 和 long 中,如示例(https://ngmap.github.io/#/!marker_with_ng_repeat_dynamic.html),我可以在日志中看到信息是正确的。但没有添加到我的地图中。
这是我的 AngularJS 代码:
还有我的 HTML 代码:
这里是我的日志:
这里的plnkr:http ://plnkr.co/edit/5uGUeyeuAie0TAFzIHMo?p=preview 和例子类似,但是增加了一个GET请求来获取一个lat和lng值的数组。我更新了删除 GET 请求并更新数据值的 plnk。
angularjs - NgMap 错误“找不到地图”
我对 Angular 很陌生,我正在尝试使用它来集成谷歌地图:https ://github.com/allenhwkim/angularjs-google-maps
我遇到的问题是当我尝试使用 NgMap.getMap() 获取地图实例时,当我 console.log NgMap.getMap 我得到“找不到地图”。这就是我的代码的样子:
部分/home.html:
Javascript:
javascript - Karma 不知道 NgMap
该应用程序运行良好,但是当我运行 Karma 对控制器进行单元测试时......
这是错误:
这是我的测试:
这是我的 Karma.config.js
angularjs - ng-地图。形状内的文字?
有谁知道是否可以在带有 ng-map 的形状内包含文本。
有什么想法吗?
angularjs - Ng-map(角度图)现在不起作用
以前当我使用 ng-map 时它工作正常,但现在它不工作,我得到空白地图。我从 google map api 收到此错误:
Google Maps JavaScript API 必须直接从 Google 的服务器下载。了解更多: https ://developers.google.com/maps/documentation/javascript/tutorial#Loading_the_Maps_API
angularjs - ngMap 检索圆的坐标和半径
我正在使用 ngMap,特别是这个例子: https ://ngmap.github.io/#/!shape_circle_with_current_position.html
它允许用户画一个圆并指定它的半径。
如何检索中心坐标和半径大小?
这是我的控制器:
我找不到任何例子。
google-maps - ngMap/Google Maps Api v3:形状编辑时调用函数
我对 ngMap 和形状有疑问。
一个形状可以有两个不同的属性,可拖动或可编辑。
可编辑在圆的中间添加一个点来拖动它。并在外侧4个点改变半径的大小。可以在这里看到: EDITABLE https://ngmap.github.io/#/!shape_circle_with_current_position.html
可以在这里看到可拖动的:DRAGABLE https://rawgit.com/allenhwkim/angularjs-google-maps/master/testapp/events.html
使用可拖动的,当我拖动它时,我可以使用“on-dragend”指令(这是一个指令吗?)。但我不知道我可以使用什么指令来编辑可编辑=“真”。
我想在编辑形状后调用一个函数,以便我可以更新我的“雷达”和“纬度”、“经度”值。像 on-edit , on-change 之类的东西?我已经尝试过蛮力一点:D
谢谢!