Thoughts origin
Not long ago, the project needed to use the track playback function of the map. I also took some detours in the process of implementation and encountered some problems. I will sort out the review for your reference and correction.
The map
The one I use the most isTencent mapandScott mapPersonally, I think Autonavi is more stable, and finally use Autonavi map to achieve.
Amap quota
Autonavi open Platform’s Web service API products have a limit on the number of calls, and there is no daily quota for the basic services encapsulated on different platforms.
Q&A
Amap provides a QUICK FAQ problem location page, which can specially maintain and solve common problems of developers. This can especially improve efficiency. In particular, it can report to leaders the evaluation of using AmAP, possible problems and quotas, as well as the compatibility of different platforms, and other problems, which are recorded in detail.
Create a project
Gitee code cloud has created a Vue project, which integrates autonavi Trace function
PS E: \ nuggets case > git clone https://gitee.com/zhaotao27/amap-pathsimplifier-gps-player.git Cloning into 'amap-pathsimplifier-gps-player'... remote: Enumerating objects: 5, done. remote: Counting objects: 100% (5/5), done. remote: Compressing objects: 100% (5/5), done. remote: Total 5 (delta 0), reused 0 (delta 0), pack-reused 0 Unpacking objects: 100% (5/5), done. Checking connectivity... Done. PS E:\ digging hard case > CD.\ amap-pathSimplifier - GPs-player \ PS E:\ digging hard case \ amap-pathSimplifier - GPs-player > yarn yarn install V1.22.10 info No lockfile found. [1/4] Resolving packages... [2/4] Fetching packages... [3/4] Linking dependencies... [4/4] Building fresh packages... Success Saved lockfile. Done in 0.20s.Copy the code
Required dependencies
Vue-amap has an init event that takes an instance of Amap, which gives you the freedom to combine the native SDK with vue-AMap, since the shoulders of giants are very tall.
"Vue - amap" : "^ 0.5.10"Copy the code
Introduced gaode Map Key
Project creation introductionThe map Key
import VueAMap from 'vue-amap'; / / map key VueAMap. InitAMapApiLoader ({key: process. The env. VUE_APP_MAP_KEY, plugin: ['Autocomplete', 'PlaceSearch', 'Scale', 'OverView', 'ToolBar', 'MapType', 'PolyEditor', 'AMap.CircleEditor', 'Geolocation', 'Geocoder', 'MarkerClusterer', 'ElasticMarker', 'Heatmap'], uiVersion: '1.0', // UI library version is not loaded without configuration, v: '1.4.4});Copy the code
Page use
Introduce AmapGpsPlayer instance in AmapGpsPlayer component
/ / lazyAMapApiLoaderInstance make sure Scott base environment map is loading the import {lazyAMapApiLoaderInstance} from 'vue - amap' / / the load correction to ensure the order lazyAMapApiLoaderInstance.load().then(() => { this.initMapTrackGpsIns() })Copy the code
Errors and resolution during startup
Start the error
Failed to compile./src/components/AmapGpsPlayer.vue
Module Error (from/node_modules/eslint-loader/index.js): E: Digger Case amap-pathSimplifier - GPS-player SRC components amapgpsplayer.vue32:29 error 'AMap' is not defined no-undef
39:7 error 'AMapUI'Is not defined no-undef *2 problems (2 errors, 0 warnings)
Copy the code
The solution
In package.json file
"eslintConfig": {
"globals": {
"AMap": true,
"AMapUI": true
}
},
Copy the code
Refer to the official autonavi example
Scheme 1 track playback (overlayMarker
Own animation implementation)
- Simple code, few features
- Requirements are not strict
- Quick prototyping Demo
- Demo address
Plan 1 track playback (cruisePathSimplifier
Implementation)
- The code is complex and the function is perfect
- Adjustable speed, fast forward and fast back
- High flexibility and extensibility
- Demo address
Data preparation
Large trajectory dataThe usage is as follows
let BIGROUTES = []; fetch('https://a.amap.com/amap-ui/static/data/big-routes.json') .then(res => res.json()) .then(res => { BIGROUTES = res Console. log(' I am large track data ********', res)})Copy the code
Map interface interpretation
Map interface definition, we need to take Gitee code cloud
/** MapOptions **/ export interface MapOptions {/** Map center point "Center" It is recommended to directly use the zoom and Center attributes to specify the map level and center point (added since V1.3)**/ view? : View2D; /** Map layer array, the array can be one or more layers, the default is normal two-dimensional map. Regular 2d maps are implemented by instantiating a TileLayer class (added since V1.3)**/ Layers? : Array<any>; /** Map display zoom level, if center and level are not set, the default map initialization display user's city range, zoom value, can be set to floating point. **/ zoom? : number; /** Map center point coordinates **/ center? : LngLat | number[]; /** Map rotation in 3D mode */ rotation? : number; /** Map annotation display order, > 110 will display the default annotation on the base map on the overlay (circle, broken line, surface). **/ labelzIndex? : number; /** Map display zoom level range on PC, default is [3, 18], value range is [3-18]; On mobile devices, the default value is [3, 19]. The value ranges from [3-19]**/ zooms? : Array<any>; /** Map language Type Optional: zh_cn: Chinese simplified, en: English, zh_en: Chinese simplified Default: zh_CN: Chinese simplified Note: Due to map content restrictions, there may be inconsistent MAP POI between Chinese, English, and Chinese (added from V1.3)**/ lang? : string; /** Maps default mouse style. The parameter defaultCursor should comply with the CSS cursor property specification **/ defaultCursor? : string; /** Map display reference coordinate system, value: 'EPSG3857''EPSG3395''EPSG4326' moved from V1.3.0 to view object **/ CRS? : string; . }Copy the code
Access effect of Scheme 1
conclusion
Plan a access is relatively simple, but unconsciously wrote many words, second scheme will be updated in the subsequent out, there is a wrong place, please leave a message to point out mistakes, in the actual project, demand higher complexity, implementation difficulty is big also, this is just their own little checking, have a common interest in friends can communicate, together with progress!