概述
你需要更换:
有:
编辑:
这是一个测试项目确切的代码我有:
指数。 cshtml:
#map_canvas{
margin-top: 50px;
height: 250px;
}
@section Scripts{
$(document).ready(function() {
Initialize();
function Initialize() {
google.maps.visualRefresh = true;
var Tunisie = new google.maps.LatLng(36.81881, 10.16596);
var mapOptions = {
zoom: 8,
center: Tunisie,
mapTypeId: google.maps.MapTypeId.G_NORMAL_MAP
};
var map = new google.maps.Map(document.getElementById("map_canvas"), mapOptions);
var myLatlng = new google.maps.LatLng(36.81881, 10.16596);
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title: 'Tate Gallery'
});
marker.setIcon('http://maps.google.com/mapfiles/ms/icons/green-dot.png')
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map, marker);
});
}
});
}
最后
以上就是柔弱大船为你收集整理的mvc5 html5,使用mvc5在cshtml中编写div元素ID的全部内容,希望文章能够帮你解决mvc5 html5,使用mvc5在cshtml中编写div元素ID所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复