gmap.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <!doctype html>
  2. <html lang="en" >
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="chrome=1">
  6. <script type="text/javascript">
  7. </script>
  8. <meta name="viewport" content="initial-scale=1.0, user-scalable=no, width=device-width">
  9. <style type="text/css">
  10. h3{
  11. font-size: 1.17em;
  12. line-height: 1.4;
  13. font-weight: bold;
  14. margin: 2px;
  15. }
  16. hr{
  17. margin: 1px;
  18. }
  19. html,body{
  20. width: 100%;
  21. height: 100%;
  22. margin: 0px;
  23. }
  24. .map{
  25. height: 100%;
  26. width: 100%;
  27. float: left;
  28. }
  29. #mapDiv .amap-indoormap-floorbar-control{bottom:10%}
  30. </style>
  31. <title>室内地图</title>
  32. </head>
  33. <body>
  34. <div id="mapDiv" class="map" tabindex="0"></div>
  35. <input type="button" onclick="getBuildingId()" value="获取建筑ID" />
  36. <script type="text/javascript" src='https://webapi.amap.com/maps?v=1.4.15&key=f3a5ac32544280c5c786bf3ccb4584dc&plugin=AMap.ToolBar'></script>
  37. <script type="text/javascript">
  38. var map = new AMap.Map('mapDiv', {
  39. resizeEnable: true,
  40. center:[120.194656,30.185285],
  41. zoom:18,
  42. pitch:50,
  43. viewMode:'3D'
  44. });
  45. map.on('indoor_create',function(){
  46. map.indoorMap.showIndoorMap('B023B1AEL0');
  47. })
  48. map.indoorMap.on('click',function(result){
  49. console.log(result);
  50. });
  51. function getBuildingId () {
  52. console.log(map.indoorMap.getSelectedBuildingId() );
  53. }
  54. </script>
  55. <script type="text/javascript" src="https://webapi.amap.com/demos/js/liteToolbar.js"></script>
  56. </body>
  57. </html>