0

このコードは HTML で記述しました

<!DOCTYPE html>
<html>
<head>
<title>Google Maps</title>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript" src="js/jquery-1.4.1.min.js"></script>
<script type="text/javascript" src="js/markers.js">
</script>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1255">
</head>
<body><div id="map"></div>
<input type="button" id="showmarkers" value="Show Markers" />

</body>
</html>

そしてJAVASCRIPTのこのコード

$(document).ready(function() {
  $("#map").css({
        height:600,
        width: 2000
    });
    var myLatLng = new google.maps.LatLng(31.2402893696987, 34.7672211844361);
  MYMAP.init('#map', myLatLng, 11);

  $("#showmarkers").click(function(e){
        MYMAP.placeMarkers('markers.xml');
});
});

var MYMAP = {
  map: null,
    bounds: null
}

MYMAP.init = function(selector, latLng, zoom) {
  var myOptions = {
    zoom:zoom,
    center: latLng,
    mapTypeId: google.maps.MapTypeId.ROADMAP
  }
  this.map = new google.maps.Map($(selector)[0], myOptions);
    this.bounds = new google.maps.LatLngBounds();
}

MYMAP.placeMarkers = function(filename) {
    $.get(filename, function(xml){
        $(xml).find("marker").each(function(){
            var name = $(this).find('name').text();
            var address = $(this).find('address').text();

            // create a new LatLng point for the marker
            var lat = $(this).find('lat').text();
            var lng = $(this).find('lng').text();
            var point = new google.maps.LatLng(parseFloat(lat),parseFloat(lng));

            // extend the bounds to include the new point
            MYMAP.bounds.extend(point);

            var marker = new google.maps.Marker({
                position: point,
                map: MYMAP.map
            });

            var infoWindow = new google.maps.InfoWindow();
            var html='<strong>'+name+'</strong.><br />'+address;
            google.maps.event.addListener(marker, 'click', function() {
                infoWindow.setContent(html);
                infoWindow.open(MYMAP.map, marker);
            });
            MYMAP.map.fitBounds(MYMAP.bounds);
        });

    });
}

このコードを使用して、ASP に Google マップを表示します。NET (C#) Web サイト。このコード全体をそのまま Web サイトのページの 1 つにロードすることはできますか? ありがとう!!!!!

4

1 に答える 1

0

はい。ASP.NET プロジェクトに新しいファイルを追加し、.aspxその既定のコンテンツを HTML に置き換えるだけです。
次に、<head>セクション にスクリプト ブロックを追加します。

<script language="javascript">

</script>

その間に、JavaScript コードを貼り付けます。

プロジェクトの他のページからこのページへのリンクを追加します。
それはうまくいくはずです。

于 2012-05-06T07:42:40.260 に答える