Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/mapviewer/MediaMarker.js
blob: a47b00bf7835dfd2a993a28478aff28412e2a159 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
function MediaMarker(){
return{
	initialize:function(pt, markerServer, markerId, tags, info, icon)
	{this.markerServer=markerServer;
	this.markerId=markerId;
	this.pt=pt;
	this.tags=tags;
	this.info=info;
	if(icon==null){icon="null";}
	this.icon=icon;
	this.iconDiv=null;
	if((this.tags == undefined)||(this.tags==null))
	{this.tags = "";}
	},
	getLatLng:function(){return this.pt;},
	get_position:function(){return this.pt;},
	get_info:function(){return this.info;},
	getMarkerServer:function(){return this.markerServer;},
	getMarkerId:function(){return this.markerId;}
};
}