change portal map data storage to match the method used for links/fields

the detailed portal data, now retreived separately from the map, will be handled by separate code, and not stored within the portals
This commit is contained in:
Jon Atkins 2013-11-30 21:06:02 +00:00
parent 1de7819982
commit c197f74945

View File

@ -277,7 +277,7 @@ window.Render.prototype.createPortalEntity = function(ent) {
ent: ent, // LEGACY - TO BE REMOVED AT SOME POINT! use .guid, .timestamp and .details instead ent: ent, // LEGACY - TO BE REMOVED AT SOME POINT! use .guid, .timestamp and .details instead
guid: ent[0], guid: ent[0],
timestamp: ent[1], timestamp: ent[1],
data: { summary: ent[2] }, data: ent[2]
}; };
var marker = createMarker(latlng, dataOptions); var marker = createMarker(latlng, dataOptions);