portal level number plugin - ignore placeholders without a level set

This commit is contained in:
Jon Atkins 2015-06-29 02:42:11 +01:00
parent b51052ca0b
commit bed576808b

View File

@ -2,7 +2,7 @@
// @id iitc-plugin-portal-level-numbers@rongou
// @name IITC plugin: Portal Level Numbers
// @category Layer
// @version 0.1.4.@@DATETIMEVERSION@@
// @version 0.1.5.@@DATETIMEVERSION@@
// @namespace https://github.com/jonatkins/ingress-intel-total-conversion
// @updateURL @@UPDATEURL@@
// @downloadURL @@DOWNLOADURL@@
@ -88,7 +88,7 @@ window.plugin.portalLevelNumbers.updatePortalLabels = function() {
for (var guid in window.portals) {
var p = window.portals[guid];
if (p._map) { // only consider portals added to the map
if (p._map && p.options.data.level !== undefined) { // only consider portals added to the map, and that have a level set
var point = map.project(p.getLatLng());
portalPoints[guid] = point;
}