You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
361 B
18 lines
361 B
const type = {
|
|
WGS84: 'WGS84',
|
|
GCJ02: 'GCJ02'
|
|
}
|
|
export const getLocation = {
|
|
type: {
|
|
type: String,
|
|
validator (value, params) {
|
|
value = (value || '').toUpperCase()
|
|
params.type = Object.values(type).indexOf(value) < 0 ? type.WGS84 : value
|
|
},
|
|
default: type.WGS84
|
|
},
|
|
altitude: {
|
|
altitude: Boolean,
|
|
default: false
|
|
}
|
|
}
|
|
|