artifacts: lightman shards (guessed - but image URLs work so probably OK)

This commit is contained in:
Jon Atkins 2015-04-22 02:48:08 +01:00
parent b2bc864d6a
commit 439fcae210

View File

@ -149,6 +149,7 @@ window.artifact.getArtifactDescriptions = function(type) {
'amar': { 'title': "Amar Artifacts", 'fragmentName': "artifacts" },
'helios': { 'title': "Helios Artifacts", 'fragmentName': "artifacts" },
'shonin': { 'title': "Sh\u014Dnin Shards", 'fragmentName': "shards" },
'lightman': { 'title': "Lightman Shards", 'fragmentName': "shards" },
};
return descriptions[type];
@ -223,7 +224,6 @@ window.artifact.updateLayer = function() {
iconSize = 60/2; // 60 pixels - half that size works better
opacity = 0.6; // these often hide portals - let's make them semi transparent
}
}
// 2014-08-09 - helios artifacts. original guess was slightly wrong
@ -237,7 +237,6 @@ window.artifact.updateLayer = function() {
iconSize = 60/2; // 60 pixels - half that size works better
opacity = 0.6; // these often hide portals - let's make them semi transparent
}
}
// 2015-03-05 - shonin shards
@ -251,7 +250,19 @@ window.artifact.updateLayer = function() {
iconSize = 60/2; // 60 pixels - half that size works better
opacity = 0.6; // these often hide portals - let's make them semi transparent
}
}
// 2015-04-22 - lightman fragments (guessed)
if (data.lightman) {
if (data.lightman.target) {
// target portal - show the target marker.
iconUrl = '//commondatastorage.googleapis.com/ingress.com/img/map_icons/marker_images/lightman_shard_target.png';
iconSize = 100/2; // 100 pixels - half that size works better
} else if (data.lightman.fragments) {
iconUrl = '//commondatastorage.googleapis.com/ingress.com/img/map_icons/marker_images/lightman_shard.png';
iconSize = 60/2; // 60 pixels - half that size works better
opacity = 0.6; // these often hide portals - let's make them semi transparent
}
}
if (iconUrl) {