0
我剛剛創建了一個ASPX項目,並希望集成傳單地圖。如何使用傳單地圖與aspx?
我以前用過HTML頁面的小冊子,但現在ASPX要求我把所有內容都放在<asp:content>
標籤中。
我的代碼
<asp:Content ID="MapPage" ContentPlaceHolderID="MainContent" runat="server">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-07I2e+7D8p6he1SIM+1twR5TIrhUQn9+I6yjqD53JQjFiMf8EtC93ty0/5vJTZGF8aAocvHYNEDJajGdNx1IsQ=="
crossorigin=""/>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-A7vV8IFfih/D732iSSKi20u/ooOfj/AGehOKq0f4vLT1Zr2Y+RX7C+w8A1gaSasGtRUZpF/NZgzSAu4/Gc41Lg=="
crossorigin=""></script>
<div id="mapid" style="height:100px; width:100px;"></div>
</asp:Content>
我把鏈接和腳本標籤從http://leafletjs.com/examples/quick-start/
他們的教程...此外,VS17說HTML5不承認crossorigin
或integrity
領域......任何建議?