12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <!--
- * @Author: gaojikai gaojikai@fehorizon.com
- * @Date: 2023-09-12 08:55:47
- * @LastEditors: gaojikai gaojikai@fehorizon.com
- * @LastEditTime: 2023-09-12 09:48:43
- * @FilePath: \electronic-file\src\components\datav\Maps.vue
- * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
- -->
- <template>
- <div id="map" :style="{ width: mapWidth, height: mapHeight }"></div>
- </template>
- <script>
- import AMapLoader from "@amap/amap-jsapi-loader";
- export default {
- props: {
- width: {
- type: [Number, String],
- default: "",
- },
- height: {
- type: [Number, String],
- default: "500px",
- },
- },
- data() {
- return {};
- },
- computed: {
- mapWidth() {
- let width = this.width;
- if (typeof width === "number") {
- width = width + "px";
- }
- return width;
- },
- mapHeight() {
- let height = this.height;
- if (typeof height === "number") {
- height = height + "px";
- }
- return height;
- },
- },
- mounted() {
- this.initMap();
- },
- methods: {
- initMap() {
- AMapLoader.load({
- key: "40f1ba8477c8eb7f56397febfcd2a656", // 申请好的Web端开发者Key,首次调用 load 时必填
- version: "2.0", // 指定要加载的 JSAPI 的版本,缺省时默认为 1.4.15
- AMapUI: {
- version: "1.1",
- },
- plugins: [
- "AMap.AutoComplete",
- "AMap.PlaceSearch",
- "AMap.Scale",
- "AMap.OverView",
- "AMap.ToolBar",
- "AMap.MapType",
- "AMap.PolyEditor",
- "AMap.CircleEditor",
- "AMap.DistrictSearch",
- "AMap.RangingTool",
- "AMap.MarkerCluster",
- "AMap.IndexCluster",
- "AMap.Geocoder",
- ], // 需要使用的的插件列表,如比例尺'AMap.Scale'等
- })
- .then((AMap) => {
- this.$emit("callback", AMap);
- })
- .catch((e) => {
- console.log(e);
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- #map {
- padding: 0px;
- margin: 20px 10px 10px 10px;
- }
- </style>
|