﻿//地图导航客户都脚本

//地图导航链接切换
//点击全景链接
function clickPano()
{
    var cityCode = document.getElementById("selectCity").value;
    window.location = "../PanoramaService/PanoramaService.aspx?CITYCODE="+cityCode;
}

//点击视频链接
function clickVedio()
{
    var cityCode = document.getElementById("selectCity").value;
    window.location = "../VedioService/VedioService.aspx?CITYCODE="+cityCode;
}

//点击影像链接
function clickImage()
{
    var cityCode = document.getElementById("selectCity").value;
    window.location = "../ImageService/ImageService.aspx?CITYCODE="+cityCode;
}

//点击地图检索链接(即POI检索)
function clickMapSearch()
{
    var cityCode = document.getElementById("selectCity").value;
   
   window.location = "../POI/POI.aspx?CITYCODE="+cityCode;
}


//点击地图检索链接(即POI检索)
function clickMapSearch2()
{
    var cityCode = document.getElementById("selectCity").value;
  
     window.location = "../POI/SoftwareBaseDefault.aspx?CITYCODE="+cityCode;
    
}


//以模态对话框形式显示帮助文档
function HelpDlg()
{
    var strUrl = "../help/help.htm";
    window.showModalDialog(strUrl, 'LBS网站帮助', 'dialogHeight=600px;dialogWidth=800px;status=no;help=no;scroll=yes;');
}


//点击帮助
function clickHelp()
{
    var cityCode = document.getElementById("selectCity").value;
    window.location = "../help/help.aspx";
}


//地图导航链接切换(在帮助页面中点击，没有城市代码)
//点击全景链接
function clickPano1()
{
    
    window.location = "../PanoramaService/PanoramaService.aspx";
}

//点击视频链接
function clickVedio1()
{
   
    window.location = "../VedioService/VedioService.aspx";
}

//点击影像链接
function clickImage1()
{
   
    window.location = "../ImageService/ImageService.aspx";
}

//点击地图检索链接(即POI检索)
function clickMapSearch1()
{
  
    window.location = "../POI/POI.aspx";
}

