@qn-pandora/pandora-visualization
Version:
Pandora 通用可视化库
42 lines (41 loc) • 1.23 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CoordinateSystems = exports.mapboxModeList = exports.showPointOptions = void 0;
var constants_1 = require("../../../constants");
var type_1 = require("../../../constants/language/mapbox/type");
var type_2 = require("../../../constants/language/base/type");
var mapbox_style_1 = require("../../../constants/mapbox-style");
exports.showPointOptions = [
{
value: true,
item: type_2.BaseLocale.on
},
{
value: false,
item: type_2.BaseLocale.off
}
];
exports.mapboxModeList = [
{
value: mapbox_style_1.EMapboxMode.Default,
item: type_1.MapboxLocale.mapmode.default
},
{
value: mapbox_style_1.EMapboxMode.Streets,
item: type_1.MapboxLocale.mapmode.streets
},
{
value: mapbox_style_1.EMapboxMode.Outdoors,
item: type_1.MapboxLocale.mapmode.outdoors
}
];
exports.CoordinateSystems = [
{
value: constants_1.CoordinateSystem.WGS84,
item: type_1.MapboxLocale.coordinateSystem.WGS84
},
{
value: constants_1.CoordinateSystem.GCJ02,
item: type_1.MapboxLocale.coordinateSystem.GCJ02
}
];