-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js.tmp
47 lines (47 loc) · 1.1 KB
/
config.js.tmp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
var pgis_conf = {
"plugin_paths" : [
"plugins/map/map.js",
// "plugins/auto_drive/auto_drive.js",
// "plugins/rtk/rtk.js",
"plugins/gps/gps_redis.js",
"plugins/camera/camera.js",
"plugins/camera/osc.js",
"plugins/camera/pserver_ble.js"
],
"map" : {
// "tileserver_url" : "http://${window.location.hostname}:9111/styles/basic-preview/style.json",
"tileserver_url" : "http://${window.location.hostname}:9111/styles/basic-preview/256/{z}/{x}/{y}.png",
},
"auto_drive" : {
"webdis_url" : "ws://localhost:7379",
"drive_path_key" : "pserver-active-drive-path"
},
"gps_redis" : {
"webdis_url" : "ws://localhost:7379",
"nmea_channel" : "pserver-nmea"
},
"rtk" : {
"devices" : [
82
],
"base_station_settings" : {
"enabled" : true,
"addr" : "rtk2go.com@localhost:3000/ntrip",
"port" : 2101,
"user" : "[email protected]",
"pswd" : "none",
"mtpt" : "MIE_UNIV"
}
},
"camera" : {
"load_html" : true,
"connect_ble" : false,
"name" : "pserver",
"url" : "https://10.42.0.1:9002",
"camera_options" : {
"osc" : {
"camera_url" : "https://10.42.0.1:9002"
}
}
}
}