Skip to content

Commit 81c3fdb

Browse files
committed
Merge branch 'master' of https://github.com/SuperMap/iClient9
2 parents 91268d8 + 0d5bc7d commit 81c3fdb

File tree

18 files changed

+515
-171
lines changed

18 files changed

+515
-171
lines changed

build/deps.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -721,6 +721,21 @@ deps = {
721721
"des": "百度MapV可视化效果"
722722
}]
723723
}
724+
},
725+
"Control": {
726+
"title": "控件",
727+
"description": "各种功能在UI上的交互控制",
728+
729+
"Logo": {
730+
"name": "logo控件",
731+
"src": [
732+
"./src/mapboxgl/control/Logo.js"
733+
],
734+
"modules": [{
735+
"name": "mapboxgl.supermap.LogoControl",
736+
"des": "logo控件"
737+
}]
738+
}
724739
}
725740
},
726741

build/jsdocs/classic/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SuperMap iClient Classic API
22

3-
* 官网(website):[http://iclient.supermapol.com/docs/classic.html#introduce](http://iclient.supermapol.com/docs/leaflet.html#introduce)
3+
* 官网(website):[http://iclient.supermapol.com/introduction/classic.html#introduce](http://iclient.supermapol.com/introduction/leaflet.html#introduce)
44

55
* 源码(source code):[https://github.com/SuperMap/iClient9/tree/master/src/classic](https://github.com/SuperMap/iClient9/tree/master/src/leaflet)
66

build/jsdocs/leaflet/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SuperMap iClient for Leaflet API
22
SuperMap iClient for Leaflet是一套基于Leaflet的GIS客户端应用程序开发工具,支持SuperMap iServer / iExpress / iPortal / Online地图和服务,同时提供了优秀的可视化功能。
33

4-
* 官网(website):[http://iclient.supermapol.com/docs/leaflet.html#introduce](http://iclient.supermapol.com/docs/leaflet.html#introduce)
4+
* 官网(website):[http://iclient.supermapol.com/introduction/leaflet.html#introduce](http://iclient.supermapol.com/introduction/leaflet.html#introduce)
55

66
* 源码(source code):[https://github.com/SuperMap/iClient9/tree/master/src/leaflet](https://github.com/SuperMap/iClient9/tree/master/src/leaflet)
77
<table><tr>

build/jsdocs/mapboxgl/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SuperMap iClient for MapboxGL API
22

33

4-
* 官网(website):[http://iclient.supermapol.com/docs/mapboxgl.html#introduce](http://iclient.supermapol.com/docs/leaflet.html#introduce)
4+
* 官网(website):[http://iclient.supermapol.com/introduction/mapboxgl.html#introduce](http://iclient.supermapol.com/introduction/leaflet.html#introduce)
55

66
* 源码(source code):[https://github.com/SuperMap/iClient9/tree/master/src/mapboxgl](https://github.com/SuperMap/iClient9/tree/master/src/leaflet)
77

build/jsdocs/openlayers/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SuperMap iClient for OpenLayers API
22
SuperMap iClient for OpenLayers是一套基于OpenLayers的GIS客户端应用程序开发工具,支持SuperMap iServer / iExpress / iPortal / Online地图和服务,同时提供了优秀的可视化功能。
33

4-
* 官网(website):[http://iclient.supermapol.com/docs/openlayers.html#introduce](http://iclient.supermapol.com/docs/openlayers.html#introduce)
4+
* 官网(website):[http://iclient.supermapol.com/introduction/openlayers.html#introduce](http://iclient.supermapol.com/introduction/openlayers.html#introduce)
55

66
* 源码(source code):[https://github.com/SuperMap/iClient9/tree/master/src/openlayers](https://github.com/SuperMap/iClient9/tree/master/src/openlayers)
77
<table><tr>

build/webpack.config.mapboxgl.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,15 @@ module.exports = {
3030
module: {
3131
noParse: /[\/\\]node_modules[\/\\]mapbox-gl[\/\\]dist[\/\\]mapbox-gl\.js$/,
3232
rules: [{
33+
//图片小于30k采用base64编码
34+
test: /\.(png|jpg|jpeg|gif|woff)$/,
35+
use: [{
36+
loader: 'url-loader',
37+
options: {
38+
limit: 30000
39+
}
40+
}]
41+
},{
3342
test: /\.js/,
3443
exclude: /classic/,
3544
loader: 'babel-loader',

0 commit comments

Comments
 (0)