mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-21 02:04:26 +08:00
support amap
This commit is contained in:
+10
-1
@@ -111,7 +111,7 @@ enable_register = true
|
|||||||
enable_export = true
|
enable_export = true
|
||||||
|
|
||||||
[map]
|
[map]
|
||||||
# Map provider, supports "openstreetmap", "googlemap", "baidumap". Leave blank if you want to disable map
|
# Map provider, supports "openstreetmap", "googlemap", "baidumap", "amap". Leave blank if you want to disable map
|
||||||
map_provider = openstreetmap
|
map_provider = openstreetmap
|
||||||
|
|
||||||
# Set to true to use the ezbookkeeping server to proxy map data requests, for "openstreetmap"
|
# Set to true to use the ezbookkeeping server to proxy map data requests, for "openstreetmap"
|
||||||
@@ -123,6 +123,15 @@ google_map_api_key =
|
|||||||
# For "baidumap" only, Baidu map JavaScript API application key, please visit https://lbsyun.baidu.com/index.php?title=jspopular3.0/guide/getkey for more information
|
# For "baidumap" only, Baidu map JavaScript API application key, please visit https://lbsyun.baidu.com/index.php?title=jspopular3.0/guide/getkey for more information
|
||||||
baidu_map_ak =
|
baidu_map_ak =
|
||||||
|
|
||||||
|
# For "amap" only, Amap JavaScript API application key, please visit https://lbs.amap.com/api/javascript-api/guide/abc/prepare for more information
|
||||||
|
amap_application_key =
|
||||||
|
|
||||||
|
# For "amap" only, Amap JavaScript API security verification method, supports "plain" (not recommend).
|
||||||
|
amap_security_verification_method = plain
|
||||||
|
|
||||||
|
# For "amap" only, Amap JavaScript API application secret, this setting must be provided when "amap_security_verification_method" is set to "plain", please visit https://lbs.amap.com/api/javascript-api/guide/abc/prepare for more information
|
||||||
|
amap_application_secret =
|
||||||
|
|
||||||
[exchange_rates]
|
[exchange_rates]
|
||||||
# Exchange rates data source, supports the following types:
|
# Exchange rates data source, supports the following types:
|
||||||
# "euro_central_bank"
|
# "euro_central_bank"
|
||||||
|
|||||||
+7
-6
@@ -4,10 +4,11 @@ import "net/http"
|
|||||||
|
|
||||||
// Error codes related to settings
|
// Error codes related to settings
|
||||||
var (
|
var (
|
||||||
ErrInvalidProtocol = NewSystemError(SystemSubcategorySetting, 0, http.StatusInternalServerError, "invalid server protocol")
|
ErrInvalidProtocol = NewSystemError(SystemSubcategorySetting, 0, http.StatusInternalServerError, "invalid server protocol")
|
||||||
ErrInvalidLogMode = NewSystemError(SystemSubcategorySetting, 1, http.StatusInternalServerError, "invalid log mode")
|
ErrInvalidLogMode = NewSystemError(SystemSubcategorySetting, 1, http.StatusInternalServerError, "invalid log mode")
|
||||||
ErrGettingLocalAddress = NewSystemError(SystemSubcategorySetting, 2, http.StatusInternalServerError, "failed to get local address")
|
ErrGettingLocalAddress = NewSystemError(SystemSubcategorySetting, 2, http.StatusInternalServerError, "failed to get local address")
|
||||||
ErrInvalidUuidMode = NewSystemError(SystemSubcategorySetting, 3, http.StatusInternalServerError, "invalid uuid mode")
|
ErrInvalidUuidMode = NewSystemError(SystemSubcategorySetting, 3, http.StatusInternalServerError, "invalid uuid mode")
|
||||||
ErrInvalidExchangeRatesDataSource = NewSystemError(SystemSubcategorySetting, 4, http.StatusInternalServerError, "invalid exchange rates data source")
|
ErrInvalidExchangeRatesDataSource = NewSystemError(SystemSubcategorySetting, 4, http.StatusInternalServerError, "invalid exchange rates data source")
|
||||||
ErrInvalidMapProvider = NewSystemError(SystemSubcategorySetting, 5, http.StatusInternalServerError, "invalid map provider")
|
ErrInvalidMapProvider = NewSystemError(SystemSubcategorySetting, 5, http.StatusInternalServerError, "invalid map provider")
|
||||||
|
ErrInvalidAmapSecurityVerificationMethod = NewSystemError(SystemSubcategorySetting, 6, http.StatusInternalServerError, "invalid amap security verification method")
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -31,6 +31,18 @@ func ServerSettingsCookie(config *settings.Config) core.MiddlewareHandlerFunc {
|
|||||||
settingsArr = append(settingsArr, buildStringSetting("bmak", config.BaiduMapAK))
|
settingsArr = append(settingsArr, buildStringSetting("bmak", config.BaiduMapAK))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if config.AMapApplicationKey != "" {
|
||||||
|
settingsArr = append(settingsArr, buildStringSetting("amak", config.AMapApplicationKey))
|
||||||
|
}
|
||||||
|
|
||||||
|
if config.AMapSecurityVerificationMethod != "" {
|
||||||
|
settingsArr = append(settingsArr, buildStringSetting("amsv", config.AMapSecurityVerificationMethod))
|
||||||
|
|
||||||
|
if config.AMapSecurityVerificationMethod == settings.AmapSecurityVerificationPlainMethod {
|
||||||
|
settingsArr = append(settingsArr, buildStringSetting("amas", config.AMapApplicationSecret))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
bundledSettings := strings.Join(settingsArr, "_")
|
bundledSettings := strings.Join(settingsArr, "_")
|
||||||
c.SetCookie(settingsCookieName, bundledSettings, int(config.TokenExpiredTime), "", "", false, false)
|
c.SetCookie(settingsCookieName, bundledSettings, int(config.TokenExpiredTime), "", "", false, false)
|
||||||
|
|
||||||
|
|||||||
+24
-4
@@ -67,6 +67,12 @@ const (
|
|||||||
OpenStreetMapProvider string = "openstreetmap"
|
OpenStreetMapProvider string = "openstreetmap"
|
||||||
GoogleMapProvider string = "googlemap"
|
GoogleMapProvider string = "googlemap"
|
||||||
BaiduMapProvider string = "baidumap"
|
BaiduMapProvider string = "baidumap"
|
||||||
|
AmapProvider string = "amap"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Amap security verification method
|
||||||
|
const (
|
||||||
|
AmapSecurityVerificationPlainMethod string = "plain"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Exchange rates data source types
|
// Exchange rates data source types
|
||||||
@@ -177,10 +183,13 @@ type Config struct {
|
|||||||
EnableDataExport bool
|
EnableDataExport bool
|
||||||
|
|
||||||
// Map
|
// Map
|
||||||
MapProvider string
|
MapProvider string
|
||||||
GoogleMapAPIKey string
|
GoogleMapAPIKey string
|
||||||
BaiduMapAK string
|
BaiduMapAK string
|
||||||
EnableMapDataFetchProxy bool
|
AMapApplicationKey string
|
||||||
|
AMapSecurityVerificationMethod string
|
||||||
|
AMapApplicationSecret string
|
||||||
|
EnableMapDataFetchProxy bool
|
||||||
|
|
||||||
// Exchange Rates
|
// Exchange Rates
|
||||||
ExchangeRatesDataSource string
|
ExchangeRatesDataSource string
|
||||||
@@ -444,6 +453,8 @@ func loadMapConfiguration(config *Config, configFile *ini.File, sectionName stri
|
|||||||
config.MapProvider = GoogleMapProvider
|
config.MapProvider = GoogleMapProvider
|
||||||
} else if getConfigItemStringValue(configFile, sectionName, "map_provider") == BaiduMapProvider {
|
} else if getConfigItemStringValue(configFile, sectionName, "map_provider") == BaiduMapProvider {
|
||||||
config.MapProvider = BaiduMapProvider
|
config.MapProvider = BaiduMapProvider
|
||||||
|
} else if getConfigItemStringValue(configFile, sectionName, "map_provider") == AmapProvider {
|
||||||
|
config.MapProvider = AmapProvider
|
||||||
} else {
|
} else {
|
||||||
return errs.ErrInvalidMapProvider
|
return errs.ErrInvalidMapProvider
|
||||||
}
|
}
|
||||||
@@ -451,6 +462,15 @@ func loadMapConfiguration(config *Config, configFile *ini.File, sectionName stri
|
|||||||
config.EnableMapDataFetchProxy = getConfigItemBoolValue(configFile, sectionName, "map_data_fetch_proxy", false)
|
config.EnableMapDataFetchProxy = getConfigItemBoolValue(configFile, sectionName, "map_data_fetch_proxy", false)
|
||||||
config.GoogleMapAPIKey = getConfigItemStringValue(configFile, sectionName, "google_map_api_key")
|
config.GoogleMapAPIKey = getConfigItemStringValue(configFile, sectionName, "google_map_api_key")
|
||||||
config.BaiduMapAK = getConfigItemStringValue(configFile, sectionName, "baidu_map_ak")
|
config.BaiduMapAK = getConfigItemStringValue(configFile, sectionName, "baidu_map_ak")
|
||||||
|
config.AMapApplicationKey = getConfigItemStringValue(configFile, sectionName, "amap_application_key")
|
||||||
|
|
||||||
|
if getConfigItemStringValue(configFile, sectionName, "amap_security_verification_method") == AmapSecurityVerificationPlainMethod {
|
||||||
|
config.AMapSecurityVerificationMethod = AmapSecurityVerificationPlainMethod
|
||||||
|
} else {
|
||||||
|
return errs.ErrInvalidAmapSecurityVerificationMethod
|
||||||
|
}
|
||||||
|
|
||||||
|
config.AMapApplicationSecret = getConfigItemStringValue(configFile, sectionName, "amap_application_secret")
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|||||||
+3
-1
@@ -2,10 +2,12 @@ const baseApiUrlPath = '/api';
|
|||||||
const baseProxyUrlPath = '/proxy';
|
const baseProxyUrlPath = '/proxy';
|
||||||
const googleMapJavascriptUrl = 'https://maps.googleapis.com/maps/api/js';
|
const googleMapJavascriptUrl = 'https://maps.googleapis.com/maps/api/js';
|
||||||
const baiduMapJavascriptUrl = 'https://api.map.baidu.com/api?v=3.0';
|
const baiduMapJavascriptUrl = 'https://api.map.baidu.com/api?v=3.0';
|
||||||
|
const amapJavascriptUrl = 'https://webapi.amap.com/maps?v=2.0';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
baseApiUrlPath: baseApiUrlPath,
|
baseApiUrlPath: baseApiUrlPath,
|
||||||
baseProxyUrlPath: baseProxyUrlPath,
|
baseProxyUrlPath: baseProxyUrlPath,
|
||||||
googleMapJavascriptUrl: googleMapJavascriptUrl,
|
googleMapJavascriptUrl: googleMapJavascriptUrl,
|
||||||
baiduMapJavascriptUrl: baiduMapJavascriptUrl
|
baiduMapJavascriptUrl: baiduMapJavascriptUrl,
|
||||||
|
amapJavascriptUrl: amapJavascriptUrl
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,165 @@
|
|||||||
|
import { asyncLoadAssets } from "@/lib/misc.js";
|
||||||
|
import services from "@/lib/services.js";
|
||||||
|
import settings from "@/lib/settings.js";
|
||||||
|
import logger from '@/lib/logger.js';
|
||||||
|
|
||||||
|
const amapHolder = {
|
||||||
|
AMap: null
|
||||||
|
};
|
||||||
|
|
||||||
|
export function loadAmapAssets() {
|
||||||
|
if (amapHolder.AMap) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!window._AMapSecurityConfig) {
|
||||||
|
const amapSecurityConfig = {};
|
||||||
|
|
||||||
|
if (settings.getAmapSecurityVerificationMethod() === 'plain') {
|
||||||
|
amapSecurityConfig.securityJsCode = settings.getAmapApplicationSecret();
|
||||||
|
}
|
||||||
|
|
||||||
|
window._AMapSecurityConfig = amapSecurityConfig;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!window.onAMapCallback) {
|
||||||
|
window.onAMapCallback = () => {
|
||||||
|
amapHolder.AMap = window.AMap;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
return asyncLoadAssets('js', services.generateAmapJavascriptUrl('onAMapCallback'));
|
||||||
|
}
|
||||||
|
|
||||||
|
export function createAmapHolder() {
|
||||||
|
return {
|
||||||
|
mapProvider: 'amap',
|
||||||
|
dependencyLoaded: !!amapHolder.AMap,
|
||||||
|
inited: false,
|
||||||
|
defaultZoomLevel: 14,
|
||||||
|
minZoomLevel: 1,
|
||||||
|
amapInstance: null,
|
||||||
|
amapToolbar: null,
|
||||||
|
amapCenterPosition: null,
|
||||||
|
amapCenterMarker: null
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export function createAmapInstance(mapHolder, mapContainer, options) {
|
||||||
|
if (!amapHolder.AMap) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
const AMap = amapHolder.AMap;
|
||||||
|
const amapInstance = new AMap.Map(mapContainer, {
|
||||||
|
zoom: options.zoomLevel,
|
||||||
|
center: [ options.initCenter.longitude, options.initCenter.latitude ],
|
||||||
|
zooms: [ 1, 19 ],
|
||||||
|
jogEnable: false
|
||||||
|
});
|
||||||
|
|
||||||
|
AMap.plugin([
|
||||||
|
'AMap.ToolBar'
|
||||||
|
], function() {
|
||||||
|
mapHolder.amapToolbar = new AMap.ToolBar({
|
||||||
|
position: 'LT'
|
||||||
|
});
|
||||||
|
|
||||||
|
amapInstance.addControl(mapHolder.amapToolbar);
|
||||||
|
});
|
||||||
|
|
||||||
|
mapHolder.amapInstance = amapInstance;
|
||||||
|
mapHolder.inited = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function setAmapCenterTo(mapHolder, center, zoomLevel) {
|
||||||
|
if (!amapHolder.AMap || !mapHolder.amapInstance) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const AMap = amapHolder.AMap;
|
||||||
|
|
||||||
|
if (amapHolder.amapCenterPosition
|
||||||
|
&& amapHolder.amapCenterPosition.originalLongitude === center.longitude
|
||||||
|
&& amapHolder.amapCenterPosition.originalLatitude === center.latitude
|
||||||
|
&& amapHolder.amapCenterPosition.convertedLongitude
|
||||||
|
&& amapHolder.amapCenterPosition.convertedLatitude
|
||||||
|
) {
|
||||||
|
mapHolder.amapInstance.setZoomAndCenter(zoomLevel, new AMap.LngLat(amapHolder.amapCenterPosition.convertedLongitude, amapHolder.amapCenterPosition.convertedLatitude));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
amapHolder.amapCenterPosition = {
|
||||||
|
originalLongitude: center.longitude,
|
||||||
|
originalLatitude: center.latitude,
|
||||||
|
convertedLongitude: null,
|
||||||
|
convertedLatitude: null
|
||||||
|
};
|
||||||
|
|
||||||
|
const centerPoint = new AMap.LngLat(center.longitude, center.latitude);
|
||||||
|
|
||||||
|
AMap.convertFrom(centerPoint, 'gps', (status, result) => {
|
||||||
|
let convertedCenterPoint = centerPoint;
|
||||||
|
|
||||||
|
if (result.info !== 'ok' || !result.locations) {
|
||||||
|
logger.warn('amap geo position convert failed');
|
||||||
|
} else {
|
||||||
|
convertedCenterPoint = result.locations[0];
|
||||||
|
amapHolder.amapCenterPosition.convertedLongitude = convertedCenterPoint.getLng();
|
||||||
|
amapHolder.amapCenterPosition.convertedLatitude = convertedCenterPoint.getLat();
|
||||||
|
}
|
||||||
|
|
||||||
|
mapHolder.amapInstance.setZoomAndCenter(zoomLevel, convertedCenterPoint);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export function setAmapCenterMaker(mapHolder, position) {
|
||||||
|
if (!amapHolder.AMap || !mapHolder.amapInstance) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const AMap = amapHolder.AMap;
|
||||||
|
const setMaker = function (point) {
|
||||||
|
if (!mapHolder.amapCenterMarker) {
|
||||||
|
mapHolder.amapCenterMarker = new AMap.Marker({
|
||||||
|
position: point
|
||||||
|
});
|
||||||
|
mapHolder.amapInstance.add(mapHolder.amapCenterMarker);
|
||||||
|
} else {
|
||||||
|
mapHolder.amapCenterMarker.setPosition(point);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (amapHolder.amapCenterPosition
|
||||||
|
&& amapHolder.amapCenterPosition.originalLongitude === position.longitude
|
||||||
|
&& amapHolder.amapCenterPosition.originalLatitude === position.latitude
|
||||||
|
&& amapHolder.amapCenterPosition.convertedLongitude
|
||||||
|
&& amapHolder.amapCenterPosition.convertedLatitude
|
||||||
|
) {
|
||||||
|
setMaker(new AMap.LngLat(amapHolder.amapCenterPosition.convertedLongitude, amapHolder.amapCenterPosition.convertedLatitude));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const markerPoint = new AMap.LngLat(position.longitude, position.latitude);
|
||||||
|
|
||||||
|
AMap.convertFrom(markerPoint, 'gps', (status, result) => {
|
||||||
|
let convertedMarkPoint = markerPoint;
|
||||||
|
|
||||||
|
if (result.info !== 'ok' || !result.locations) {
|
||||||
|
logger.warn('amap geo position convert failed');
|
||||||
|
} else {
|
||||||
|
convertedMarkPoint = result.locations[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
setMaker(convertedMarkPoint);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export function removeAmapCenterMaker(mapHolder) {
|
||||||
|
if (!mapHolder.amapInstance || !mapHolder.amapCenterMarker) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
mapHolder.amapInstance.remove(mapHolder.amapCenterMarker);
|
||||||
|
mapHolder.amapCenterMarker = null;
|
||||||
|
}
|
||||||
@@ -27,6 +27,15 @@ import {
|
|||||||
removeBaiduMapCenterMaker
|
removeBaiduMapCenterMaker
|
||||||
} from './baidumap.js';
|
} from './baidumap.js';
|
||||||
|
|
||||||
|
import {
|
||||||
|
loadAmapAssets,
|
||||||
|
createAmapHolder,
|
||||||
|
createAmapInstance,
|
||||||
|
setAmapCenterTo,
|
||||||
|
setAmapCenterMaker,
|
||||||
|
removeAmapCenterMaker
|
||||||
|
} from './amap.js';
|
||||||
|
|
||||||
export function loadMapAssets(language) {
|
export function loadMapAssets(language) {
|
||||||
if (settings.getMapProvider() === 'openstreetmap') {
|
if (settings.getMapProvider() === 'openstreetmap') {
|
||||||
return loadLeafletMapAssets(language);
|
return loadLeafletMapAssets(language);
|
||||||
@@ -34,6 +43,8 @@ export function loadMapAssets(language) {
|
|||||||
return loadGoogleMapAssets(language);
|
return loadGoogleMapAssets(language);
|
||||||
} else if (settings.getMapProvider() === 'baidumap') {
|
} else if (settings.getMapProvider() === 'baidumap') {
|
||||||
return loadBaiduMapAssets(language);
|
return loadBaiduMapAssets(language);
|
||||||
|
} else if (settings.getMapProvider() === 'amap') {
|
||||||
|
return loadAmapAssets(language);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,6 +55,8 @@ export function createMapHolder() {
|
|||||||
return createGoogleMapHolder();
|
return createGoogleMapHolder();
|
||||||
} else if (settings.getMapProvider() === 'baidumap') {
|
} else if (settings.getMapProvider() === 'baidumap') {
|
||||||
return createBaiduMapHolder();
|
return createBaiduMapHolder();
|
||||||
|
} else if (settings.getMapProvider() === 'amap') {
|
||||||
|
return createAmapHolder();
|
||||||
} else {
|
} else {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@@ -60,6 +73,8 @@ export function initMapInstance(mapHolder, mapContainer, options) {
|
|||||||
createGoogleMapInstance(mapHolder, mapContainer, options);
|
createGoogleMapInstance(mapHolder, mapContainer, options);
|
||||||
} else if (mapHolder.mapProvider === 'baidumap') {
|
} else if (mapHolder.mapProvider === 'baidumap') {
|
||||||
createBaiduMapInstance(mapHolder, mapContainer, options);
|
createBaiduMapInstance(mapHolder, mapContainer, options);
|
||||||
|
} else if (mapHolder.mapProvider === 'amap') {
|
||||||
|
createAmapInstance(mapHolder, mapContainer, options);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -74,6 +89,8 @@ export function setMapCenterTo(mapHolder, center, zoomLevel) {
|
|||||||
setGoogleMapCenterTo(mapHolder, center, zoomLevel);
|
setGoogleMapCenterTo(mapHolder, center, zoomLevel);
|
||||||
} else if (mapHolder.mapProvider === 'baidumap') {
|
} else if (mapHolder.mapProvider === 'baidumap') {
|
||||||
setBaiduMapCenterTo(mapHolder, center, zoomLevel);
|
setBaiduMapCenterTo(mapHolder, center, zoomLevel);
|
||||||
|
} else if (mapHolder.mapProvider === 'amap') {
|
||||||
|
setAmapCenterTo(mapHolder, center, zoomLevel);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,6 +105,8 @@ export function setMapCenterMarker(mapHolder, position) {
|
|||||||
setGoogleMapCenterMaker(mapHolder, position);
|
setGoogleMapCenterMaker(mapHolder, position);
|
||||||
} else if (mapHolder.mapProvider === 'baidumap') {
|
} else if (mapHolder.mapProvider === 'baidumap') {
|
||||||
setBaiduMapCenterMaker(mapHolder, position);
|
setBaiduMapCenterMaker(mapHolder, position);
|
||||||
|
} else if (mapHolder.mapProvider === 'amap') {
|
||||||
|
setAmapCenterMaker(mapHolder, position);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -102,5 +121,7 @@ export function removeMapCenterMarker(mapHolder) {
|
|||||||
removeGoogleMapCenterMaker(mapHolder);
|
removeGoogleMapCenterMaker(mapHolder);
|
||||||
} else if (mapHolder.mapProvider === 'baidumap') {
|
} else if (mapHolder.mapProvider === 'baidumap') {
|
||||||
removeBaiduMapCenterMaker(mapHolder);
|
removeBaiduMapCenterMaker(mapHolder);
|
||||||
|
} else if (mapHolder.mapProvider === 'amap') {
|
||||||
|
removeAmapCenterMaker(mapHolder);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -420,5 +420,8 @@ export default {
|
|||||||
},
|
},
|
||||||
generateBaiduMapJavascriptUrl: (callbackFnName) => {
|
generateBaiduMapJavascriptUrl: (callbackFnName) => {
|
||||||
return `${api.baiduMapJavascriptUrl}&ak=${settings.getBaiduMapAK()}&callback=${callbackFnName}`;
|
return `${api.baiduMapJavascriptUrl}&ak=${settings.getBaiduMapAK()}&callback=${callbackFnName}`;
|
||||||
|
},
|
||||||
|
generateAmapJavascriptUrl: (callbackFnName) => {
|
||||||
|
return `${api.amapJavascriptUrl}&key=${settings.getAmapApplicationKey()}&callback=${callbackFnName}`;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -171,5 +171,8 @@ export default {
|
|||||||
isMapDataFetchProxyEnabled: () => getServerSetting('mp') === '1',
|
isMapDataFetchProxyEnabled: () => getServerSetting('mp') === '1',
|
||||||
getGoogleMapAPIKey: () => getServerSetting('gmak'),
|
getGoogleMapAPIKey: () => getServerSetting('gmak'),
|
||||||
getBaiduMapAK: () => getServerSetting('bmak'),
|
getBaiduMapAK: () => getServerSetting('bmak'),
|
||||||
|
getAmapApplicationKey: () => getServerSetting('amak'),
|
||||||
|
getAmapSecurityVerificationMethod: () => getServerSetting('amsv'),
|
||||||
|
getAmapApplicationSecret: () => getServerSetting('amas'),
|
||||||
clearSettings: clearSettings
|
clearSettings: clearSettings
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user