使用Web服务调用结果覆盖Google地图

时间:2013-07-02 18:46:52

标签: javascript google-maps razor

我们正在构建一个网页,以支持托管某些数据的Web服务。该网页已在Microsoft WebMatrix中启动。它使用带有剃刀的cshtml文件,但是 NOT MVC (据我所知)。

我没有使用cshtml,javascript或ajax的经验。实际上我只是想修复我的团队成员代码,因为他们的编程经验更少。我们必须在最多6到7天内找到某种解决方案,所以没时间玩游戏并习惯。

我需要帮助显示带有叠加层的Google地图地图。只需点击一下按钮即可更新叠加层。

在覆盖中形成正确种类标记的信息必须通过用C#编写的基于SOAP的Web服务提供。它通过网络参考包含在内。

此Web服务中的方法为我们提供了一个特殊数据类型的数组,并且数据类型是通过Web服务本身的DataContract提供的。我们必须遍历此数组以获取我们需要的信息。每个数组单元格包含纬度,经度和某个int值(除了其他东西)。

现在我有一个这样的按钮(请告诉我如何更好地工作方式)

<button type="button" onclick="@{table = VisuTable.demandTestData(*INPUT*);}, javascript:refreshOverlay() ">
  <span style="color: #37439c;">
    Refresh
  </span>
</button>

table是页面上存在的变量。这样,我希望在按下按钮时始终获取最新数据并使用它刷新叠加层。

这是我现在驻留在-section中的refreshOverlay函数:

function refreshOverlay() {

        @for (var i = 0; i < table.Length; i++)

        {
        <text>
        var Cityfor = new google.maps.LatLng(@(table[i].Latitude),@(table[i].Longitude));
        var strengthfor = @(table[i].GsmSignalStrength);


        var myCity = new google.maps.Circle({
        center: Cityfor,
        radius: 100,
        strokeColor: "#00000",
        strokeOpacity: 1,
        strokeWeight: 2,
        fillColor: strengthtocolor(strengthfor),
        fillOpacity: 0.8});
        </text>
        }
    }

}

这不起作用,因为javascript是在客户端执行的,而剃刀代码中的变量“table”是基于服务器的。

首先:我走在正确的轨道上吗?如果没有,我该怎么做呢?

如果我走在正确的轨道上:如何将我的数据导入javascript? 我听说过AJAX能够做到这一点,但我绝对不知道它是如何起作用的。

请帮帮我。

此外,根据尼克的请求,完整的代码没有一些冗长,无趣的部分。

@using XMapService;
@{
    Layout = "~/_SiteLayout.cshtml";
    Page.Title = "Home Page";
    string manutemp="";
    MeasuredDataTable[] table;
    string[] providers = {};
    string[] devices = {};
    byte[] networkTypes = {};
    int tableLength = 0;
    string provi;
    string manufacs;
    string modelle;
    float long1;
    float long2;
    float lat1;
    float lat2;
    int year1 = 2013;
    int year2 = 2013;
    int month1;
    int month2;
    int day1;
    int day2;
    int hour1;
    int hour2;
    int minutes1 = 0;
    int minutes2 = 0;
}




@section featured {

<section class="featured">
    <div class="content-wrapper">
        <hgroup class="title">
            <h1>@Page.Title.</h1>
             <h2>Hello, <a class="email" href="~/Account/Manage" title="Manage">@Authentication.CurrentUserName</a>!
                                <form id="logoutForm" action="~/Account/Logout" method="post">
                                    @AntiForgery.GetHtml()</h2></form>

        </hgroup>
     </div>
</section>
}

@if (Authentication.IsAuthenticated) {

<nav>
 <ul id="menu">
    <li><a href="~/Graph">Graph</a></li>
    <li><a href="~/Tabelle">Tabelle</a></li>
 </ul>
</nav>


<body>

<table> 
<tr>

<th>
    &nbsp
<h3>Provider</h3>
&nbsp
    <form name="provform" method="post">
        <select onchange="provi=this.form.provlist.options[this.form.provlist.selectedIndex].value" name="provlist" size="5" multiple>
            @{string[][] provider = Visualization.demandProvider();
              int n = provider.Length;}
            @for(int i=0; i<n; i++) {
            <option value="@provider[i][1]">@provider[i][1]</option>
            }
        </select>
    </form>
&nbsp
</th> 
    <th>&nbsp</th>
    <th>&nbsp</th>
    <th>&nbsp</th>
    <th>
&nbsp
<h3>Hersteller</h3>
&nbsp
    <form name="manuform" method="post">

        <select onchange="manufacs=this.form.manulist.options[this.form.manulist.selectedIndex].value" name="manulist" size="5" multiple>
            @{string[] device = Visualization.demandManufactorer();
              int m = device.Length;
              //
              }

              @for(int i=0; i<m; i++) {
            <option value="@device[i]">@device[i]</option>
            }
        </select>
    </form>
&nbsp

</th>

    <th>&nbsp </th>
    <th>&nbsp </th>
<th>&nbsp </th>

        <th>


   <h3>Modelle</h3>    
            &nbsp   
   <form name="modelform" method="post">
        <select onchange="modelle=this.form.modellist.options[this.form.modellist.selectedIndex].value" name="modellist" size="5" multiple>
            @for(int i=0; i<m; i++) {


                 <optgroup label="@device[i]" >
                 @{String[] mod = {device[i]};
                   String[][] models = Visualization.demandModels(mod);
                   int l = models.Length;
                 }
                 @for(int j=0; j<l; j++){
                    <option value="@models[j][1]">@models[j][1]</option>}
                 </optgroup> }

            }


        </select>
    </form>

</th> 


<th></th>
<th>&nbsp </th> 



<td>
<h4>Koordinaten</h4>
<input name="Längendgrad1" onchange="long1=this.value" type="text" width="1"  value="Längendgrad1">
<input name="Längendgrad2" onchange="long2=this.value"type="text" size="10" maxlength="15" value="Längendgrad2">
<input name="Breitengrad1" onchange="lat1=this.value"type="text" size="10" maxlength="15" value="Breitengrad1">
<input name="Breitengrad2" onchange="lat2=this.value"type="text" size="10" maxlength="15" value="Breitengrad2"></td>



    <th>&nbsp </th> 
    <th>&nbsp</th>

    <th>*DECLARATIONS OF FIELDS TO CHOOSE DATE AND TIME*<th>

  <button type="button" onclick="@{table = VisuTable.demandTestData(*INPUT*);}, javascript:refreshOverlay() ">
      <span style="color: #37439c;">
        Refresh
      </span>
    </button>
</th>


*BUTTON TRIES*   

<th><button type="button" onclick="alert(provi+manufacs+modelle+long1+long2+lat1+lat2), @{table = VisuTable.demandTestData(from,to,provi,modelle,networkTypes,long1,long2,lat1,lat2,Authentication.CurrentUserName,true); }, javascript:refreshOverlay() "><span style="color: #37439c;">Refresh</span></button></th>



@*<th><button type="button" onclick="@{table = VisuTable.demandTestData(new DateTime(), new DateTime(), providers, devices, networkTypes, (float)0.0, (float)0.0, (float)0.0, (float)0.0, 1, true); tableLength = table.Length;}"><span style="color: #37439c;">Refresh</span></button></th>*@


*/BUTTON TRIES*
</tr>
</table>


</body>








    <script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?key=*************************************&sensor=false">
    </script>

    <script type="text/javascript">

    var City = new google.maps.LatLng(52.27445232932608, 10.527868866920471);
    var strength = (-113);

          function strengthtocolor(strength) {

            switch (strength) {

                *DEFINING COLORS FOR OVERLAY*
            }
            return color;
        }

        var map;

    function initialize() {
        var mapProp = {
            center: City,
            zoom: 14,
            mapTypeId: google.maps.MapTypeId.ROADMAP
        };

        map = new google.maps.Map(document.getElementById("googleMap"), mapProp);   



*TEST CODE*
        /*
        for(var i=-7;i<7;i++){

        var Cityfor = new google.maps.LatLng(52.27445232932608 + 0.01 *i, 10.527868866920471- 0.01 * i);
        var strengthfor = (-113 + 4 * (i+7));

         var myCity = new google.maps.Circle({
            center: Cityfor,
            radius: 100,
            strokeColor: "#00000", //hier kommt noch ne funktion für den Rand hin
            strokeOpacity: 1,
            strokeWeight: 2,
            fillColor: strengthtocolor(strengthfor), //für innere Farbe
            fillOpacity: 0.8,
        });
        */
*/TEST CODE*


        myCity.setMap(map);
    };



    google.maps.event.addDomListener(window, 'load', initialize);

    </script>




    function refreshOverlay() {

            @for (var i = 0; i < table.Length; i++)

            {
                <script type="text/javascript">
            <text>
            var Cityfor = new google.maps.LatLng(@(table[i].Latitude),@(table[i].Longitude));
            var strengthfor = @(table[i].GsmSignalStrength);


            var myCity = new google.maps.Circle({
            center: Cityfor,
            radius: 100,
            strokeColor: "#00000", //hier kommt noch ne funktion für den Rand hin
            strokeOpacity: 1,
            strokeWeight: 2,
            fillColor: strengthtocolor(strengthfor), //für innere Farbe
            fillOpacity: 0.8});
            </text>
                </script>
            }
        }

    }

</script>



    <div id="googleMap" style="width: 700px; height: 380px;">
    </div>




}
else
{


    <h3>
        Erst einmal einloggen...
    </h3>

}

我知道,这是一些混乱的垃圾。如果我知道自己在做什么,就不需要帮助了。

0 个答案:

没有答案