
		function stopLoopDisplay()
		{
			this.stopLoopDisplay();
		}
		
		function afterLoad() {
			var latitude = $('latitude').value;
			var longitude = $('longitude').value;
			var kilo = $('kilo').value;

			getLocalInfo(this, latitude, longitude, kilo);
		}

		function getLocalInfo(map, lat, lng, kilo)
		{
			var places = [];
			//标注当前位置
			places[places.length] = {
				id: '',
				lat: lat,
				lng: lng,
				infohtml: '',
				img: '/themes/common/images/blue.png',
				url: '',
				isme: true
			};

			map.addPlaces(places);

			//屏蔽掉，改成标注当前位置
			/*
			ChinSoftProject.Ajax.AjaxServer.GetRelatedInfo(lat, lng, kilo, function(data){
				var resp = data.value;
				
				if(resp.Code == resp.SUCCESS)
				{
					var keys = resp.Pros.getKeys();
					var places = [];
					for(var i=0; i<keys.length; i++)
					{
						place = resp.Pros.getValue(keys[i]);
						places[places.length] = {
							id: place.ID,
							lat: place.Coordinate.Latitude,
							lng: place.Coordinate.Longitude,
							infohtml: place.InfoHtml,
							img: place.Icon,
							url: place.Url,
							isme: place.Isme
						};
					}

					//标注当前位置
					places[places.length] = {
						id: '',
						lat: lat,
						lng: lng,
						infohtml: '',
						img: '/themes/common/images/blue.png',
						url: '',
						isme: true
					};

					map.addPlaces(places);

					//如果需要循环显示
					if(map.options.loopShow)
					{
						map.startLoopDisplay();
					}
				}
				else
				{
					alert(resp.Message);
				}
			});
			*/
			
			return false;
		}
	
