123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <!doctype html>
- <html lang="en" >
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="chrome=1">
- <script type="text/javascript">
- </script>
- <meta name="viewport" content="initial-scale=1.0, user-scalable=no, width=device-width">
- <style type="text/css">
- h3{
- font-size: 1.17em;
- line-height: 1.4;
- font-weight: bold;
- margin: 2px;
- }
- hr{
- margin: 1px;
- }
- html,body{
- width: 100%;
- height: 100%;
- margin: 0px;
- }
- .map{
- height: 100%;
- width: 100%;
- float: left;
- }
- #mapDiv .amap-indoormap-floorbar-control{bottom:10%}
- </style>
- <title>室内地图</title>
- </head>
- <body>
- <div id="mapDiv" class="map" tabindex="0"></div>
- <input type="button" onclick="getBuildingId()" value="获取建筑ID" />
- <script type="text/javascript" src='https://webapi.amap.com/maps?v=1.4.15&key=f3a5ac32544280c5c786bf3ccb4584dc&plugin=AMap.ToolBar'></script>
- <script type="text/javascript">
- var map = new AMap.Map('mapDiv', {
- resizeEnable: true,
- center:[120.194656,30.185285],
- zoom:18,
- pitch:50,
- viewMode:'3D'
- });
- map.on('indoor_create',function(){
- map.indoorMap.showIndoorMap('B023B1AEL0');
- })
- map.indoorMap.on('click',function(result){
- console.log(result);
- });
- function getBuildingId () {
- console.log(map.indoorMap.getSelectedBuildingId() );
- }
-
- </script>
- <script type="text/javascript" src="https://webapi.amap.com/demos/js/liteToolbar.js"></script>
- </body>
-
- </html>
|