├── .babelrc ├── .gitignore ├── .node-version ├── .npmignore ├── FAQ.md ├── LICENSE ├── README.md ├── package.json ├── rsg-config ├── Link.jsx ├── Logo.jsx ├── Ribbon.jsx ├── logo.ico ├── replace.cdn.js ├── style.config.js └── theme.config.js ├── src ├── Control │ ├── CityListControl.tsx │ ├── Control.tsx │ ├── MapTypeControl.tsx │ ├── NavigationControl.tsx │ ├── PanoramaControl.tsx │ ├── ScaleControl.tsx │ └── ZoomControl.tsx ├── Custom │ └── Arc.tsx ├── Layer │ ├── MapvglLayer.tsx │ ├── MapvglView.tsx │ ├── PanoramaLayer.tsx │ └── TrafficLayer.tsx ├── Library │ ├── DistanceTool.tsx │ └── DrawingManager.tsx ├── Map │ ├── Map.tsx │ └── MapApiLoaderHOC.tsx ├── Overlay │ ├── Circle.tsx │ ├── CustomOverlay.tsx │ ├── CustomOverlayDom.ts │ ├── Graphy.tsx │ ├── InfoWindow.tsx │ ├── Label.tsx │ ├── Marker.tsx │ ├── Polygon.tsx │ └── Polyline.tsx ├── Services │ └── AutoComplete.tsx ├── baiduTongji.js ├── common │ ├── Component.tsx │ ├── WrapperHOC.tsx │ └── index.tsx ├── index.tsx └── utils │ ├── getDisplayName.ts │ ├── index.ts │ ├── isString.ts │ └── requireScript.ts ├── styleguide.config.js ├── tsconfig.build.json ├── tsconfig.json ├── types ├── README.md └── bmapgl │ ├── bmapgl-tests.ts │ ├── bmapgl.base.d.ts │ ├── bmapgl.bmapgllib.d.ts │ ├── bmapgl.control.d.ts │ ├── bmapgl.core.d.ts │ ├── bmapgl.maplayer.d.ts │ ├── bmapgl.maptype.d.ts │ ├── bmapgl.mapvgl.d.ts │ ├── bmapgl.overlay.d.ts │ ├── bmapgl.panorama.d.ts │ ├── bmapgl.rightmenu.d.ts │ ├── bmapgl.service.d.ts │ ├── bmapgl.tools.d.ts │ ├── index.d.ts │ ├── tsconfig.json │ └── tslint.json └── website ├── Control ├── CityListControl.md ├── MapTypeControl.md ├── NavigationControl.md ├── PanoramaControl.md ├── ScaleControl.md └── ZoomControl.md ├── Custom └── Arc.md ├── Layer ├── MapvglLayer.md ├── MapvglView.md ├── PanoramaLayer.md └── TrafficLayer.md ├── Library ├── DistanceTool.md └── DrawingManager.md ├── Map ├── Map.md └── MapApiLoaderHOC.md ├── Overlay ├── Circle.md ├── CustomOverlay.md ├── InfoWindow.md ├── Label.md ├── Marker.md ├── Polygon.md └── Polyline.md ├── Services └── AutoComplete.md └── static ├── blackstyle.json ├── mock-data.js └── whitestyle.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | v16.16.0 -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/.npmignore -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/FAQ.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/package.json -------------------------------------------------------------------------------- /rsg-config/Link.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/rsg-config/Link.jsx -------------------------------------------------------------------------------- /rsg-config/Logo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/rsg-config/Logo.jsx -------------------------------------------------------------------------------- /rsg-config/Ribbon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/rsg-config/Ribbon.jsx -------------------------------------------------------------------------------- /rsg-config/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/rsg-config/logo.ico -------------------------------------------------------------------------------- /rsg-config/replace.cdn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/rsg-config/replace.cdn.js -------------------------------------------------------------------------------- /rsg-config/style.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/rsg-config/style.config.js -------------------------------------------------------------------------------- /rsg-config/theme.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/rsg-config/theme.config.js -------------------------------------------------------------------------------- /src/Control/CityListControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Control/CityListControl.tsx -------------------------------------------------------------------------------- /src/Control/Control.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Control/Control.tsx -------------------------------------------------------------------------------- /src/Control/MapTypeControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Control/MapTypeControl.tsx -------------------------------------------------------------------------------- /src/Control/NavigationControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Control/NavigationControl.tsx -------------------------------------------------------------------------------- /src/Control/PanoramaControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Control/PanoramaControl.tsx -------------------------------------------------------------------------------- /src/Control/ScaleControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Control/ScaleControl.tsx -------------------------------------------------------------------------------- /src/Control/ZoomControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Control/ZoomControl.tsx -------------------------------------------------------------------------------- /src/Custom/Arc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Custom/Arc.tsx -------------------------------------------------------------------------------- /src/Layer/MapvglLayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Layer/MapvglLayer.tsx -------------------------------------------------------------------------------- /src/Layer/MapvglView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Layer/MapvglView.tsx -------------------------------------------------------------------------------- /src/Layer/PanoramaLayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Layer/PanoramaLayer.tsx -------------------------------------------------------------------------------- /src/Layer/TrafficLayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Layer/TrafficLayer.tsx -------------------------------------------------------------------------------- /src/Library/DistanceTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Library/DistanceTool.tsx -------------------------------------------------------------------------------- /src/Library/DrawingManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Library/DrawingManager.tsx -------------------------------------------------------------------------------- /src/Map/Map.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Map/Map.tsx -------------------------------------------------------------------------------- /src/Map/MapApiLoaderHOC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Map/MapApiLoaderHOC.tsx -------------------------------------------------------------------------------- /src/Overlay/Circle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Overlay/Circle.tsx -------------------------------------------------------------------------------- /src/Overlay/CustomOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Overlay/CustomOverlay.tsx -------------------------------------------------------------------------------- /src/Overlay/CustomOverlayDom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Overlay/CustomOverlayDom.ts -------------------------------------------------------------------------------- /src/Overlay/Graphy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Overlay/Graphy.tsx -------------------------------------------------------------------------------- /src/Overlay/InfoWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Overlay/InfoWindow.tsx -------------------------------------------------------------------------------- /src/Overlay/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Overlay/Label.tsx -------------------------------------------------------------------------------- /src/Overlay/Marker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Overlay/Marker.tsx -------------------------------------------------------------------------------- /src/Overlay/Polygon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Overlay/Polygon.tsx -------------------------------------------------------------------------------- /src/Overlay/Polyline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Overlay/Polyline.tsx -------------------------------------------------------------------------------- /src/Services/AutoComplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/Services/AutoComplete.tsx -------------------------------------------------------------------------------- /src/baiduTongji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/baiduTongji.js -------------------------------------------------------------------------------- /src/common/Component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/common/Component.tsx -------------------------------------------------------------------------------- /src/common/WrapperHOC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/common/WrapperHOC.tsx -------------------------------------------------------------------------------- /src/common/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/common/index.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/utils/getDisplayName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/utils/getDisplayName.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/isString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/utils/isString.ts -------------------------------------------------------------------------------- /src/utils/requireScript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/src/utils/requireScript.ts -------------------------------------------------------------------------------- /styleguide.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/styleguide.config.js -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/types/README.md -------------------------------------------------------------------------------- /types/bmapgl/bmapgl-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/types/bmapgl/bmapgl-tests.ts -------------------------------------------------------------------------------- /types/bmapgl/bmapgl.base.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/types/bmapgl/bmapgl.base.d.ts -------------------------------------------------------------------------------- /types/bmapgl/bmapgl.bmapgllib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/types/bmapgl/bmapgl.bmapgllib.d.ts -------------------------------------------------------------------------------- /types/bmapgl/bmapgl.control.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/types/bmapgl/bmapgl.control.d.ts -------------------------------------------------------------------------------- /types/bmapgl/bmapgl.core.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/types/bmapgl/bmapgl.core.d.ts -------------------------------------------------------------------------------- /types/bmapgl/bmapgl.maplayer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/types/bmapgl/bmapgl.maplayer.d.ts -------------------------------------------------------------------------------- /types/bmapgl/bmapgl.maptype.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/types/bmapgl/bmapgl.maptype.d.ts -------------------------------------------------------------------------------- /types/bmapgl/bmapgl.mapvgl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/types/bmapgl/bmapgl.mapvgl.d.ts -------------------------------------------------------------------------------- /types/bmapgl/bmapgl.overlay.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/types/bmapgl/bmapgl.overlay.d.ts -------------------------------------------------------------------------------- /types/bmapgl/bmapgl.panorama.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/types/bmapgl/bmapgl.panorama.d.ts -------------------------------------------------------------------------------- /types/bmapgl/bmapgl.rightmenu.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/types/bmapgl/bmapgl.rightmenu.d.ts -------------------------------------------------------------------------------- /types/bmapgl/bmapgl.service.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/types/bmapgl/bmapgl.service.d.ts -------------------------------------------------------------------------------- /types/bmapgl/bmapgl.tools.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/types/bmapgl/bmapgl.tools.d.ts -------------------------------------------------------------------------------- /types/bmapgl/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/types/bmapgl/index.d.ts -------------------------------------------------------------------------------- /types/bmapgl/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/types/bmapgl/tsconfig.json -------------------------------------------------------------------------------- /types/bmapgl/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/types/bmapgl/tslint.json -------------------------------------------------------------------------------- /website/Control/CityListControl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/Control/CityListControl.md -------------------------------------------------------------------------------- /website/Control/MapTypeControl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/Control/MapTypeControl.md -------------------------------------------------------------------------------- /website/Control/NavigationControl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/Control/NavigationControl.md -------------------------------------------------------------------------------- /website/Control/PanoramaControl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/Control/PanoramaControl.md -------------------------------------------------------------------------------- /website/Control/ScaleControl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/Control/ScaleControl.md -------------------------------------------------------------------------------- /website/Control/ZoomControl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/Control/ZoomControl.md -------------------------------------------------------------------------------- /website/Custom/Arc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/Custom/Arc.md -------------------------------------------------------------------------------- /website/Layer/MapvglLayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/Layer/MapvglLayer.md -------------------------------------------------------------------------------- /website/Layer/MapvglView.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/Layer/MapvglView.md -------------------------------------------------------------------------------- /website/Layer/PanoramaLayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/Layer/PanoramaLayer.md -------------------------------------------------------------------------------- /website/Layer/TrafficLayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/Layer/TrafficLayer.md -------------------------------------------------------------------------------- /website/Library/DistanceTool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/Library/DistanceTool.md -------------------------------------------------------------------------------- /website/Library/DrawingManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/Library/DrawingManager.md -------------------------------------------------------------------------------- /website/Map/Map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/Map/Map.md -------------------------------------------------------------------------------- /website/Map/MapApiLoaderHOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/Map/MapApiLoaderHOC.md -------------------------------------------------------------------------------- /website/Overlay/Circle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/Overlay/Circle.md -------------------------------------------------------------------------------- /website/Overlay/CustomOverlay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/Overlay/CustomOverlay.md -------------------------------------------------------------------------------- /website/Overlay/InfoWindow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/Overlay/InfoWindow.md -------------------------------------------------------------------------------- /website/Overlay/Label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/Overlay/Label.md -------------------------------------------------------------------------------- /website/Overlay/Marker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/Overlay/Marker.md -------------------------------------------------------------------------------- /website/Overlay/Polygon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/Overlay/Polygon.md -------------------------------------------------------------------------------- /website/Overlay/Polyline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/Overlay/Polyline.md -------------------------------------------------------------------------------- /website/Services/AutoComplete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/Services/AutoComplete.md -------------------------------------------------------------------------------- /website/static/blackstyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/static/blackstyle.json -------------------------------------------------------------------------------- /website/static/mock-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/static/mock-data.js -------------------------------------------------------------------------------- /website/static/whitestyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiyan-fe/react-bmapgl/HEAD/website/static/whitestyle.json --------------------------------------------------------------------------------