国产 无码 综合区,色欲AV无码国产永久播放,无码天堂亚洲国产AV,国产日韩欧美女同一区二区

vue集成mars3d后,basemaps加不上去

這篇具有很好參考價值的文章主要介紹了vue集成mars3d后,basemaps加不上去。希望對大家有所幫助。如果存在錯誤或未考慮完全的地方,請大家不吝賜教,您也可以點擊"舉報違法"按鈕提交疑問。

首先:

<template>

? <div id="centerDiv" class="mapcontainer">

? ? <mars-map :url="configUrl" @οnlοad="onMapload" />

? </div>

</template>

<script>

import MarsMap from '../components/mars-work/mars-map.vue'

import * as mars3d from 'mars3d'

//npm install mars3d-echarts --save

import 'mars3d-echarts'

const Cesium = mars3d.Cesium

export default {

? // eslint-disable-next-line vue/multi-word-component-names

? name: 'Index',

? components: {

? ? MarsMap

? },

? data() {

? ? const basePathUrl = window.basePathUrl || ''

? ? return {

? ? ? configUrl: basePathUrl + 'config/config.json'

? ? }

? },

? methods: {

? ? // 地圖構造完成回調

? ? onMapload(map) {

? ? ? // 以下為演示代碼

? ? ? map.setCameraView({ lat: 30.617828, lng: 116.294045, alt: 44160, heading: 357, pitch: -59 })

? ? ? // 創(chuàng)建entity圖層

? ? ? const graphicLayer = new mars3d.layer.GraphicLayer()

? ? ? map.addLayer(graphicLayer)

? ? ? const tiles3dLayer = new mars3d.layer.TilesetLayer({

? ? ? ? url: '//data.mars3d.cn/3dtiles/bim-qiaoliang/tileset.json',

? ? ? ? maximumScreenSpaceError: 16,

? ? ? ? position: { lng: 117.096906, lat: 31.851564, alt: 45 },

? ? ? ? rotation: { z: 17.5 },

? ? ? ? flyTo: true

? ? ? })

? ? ? map.addLayer(tiles3dLayer)

? ? ? const poiQueryButton = new PoiQueryButton({

? ? ? ? insertIndex: 0 // 插入的位置順序

? ? ? })

? ? ? map.addControl(poiQueryButton)

? ? ? // 2.在layer上綁定監(jiān)聽事件

? ? ? graphicLayer.on(this.mars3d.EventType.click, function (event) {

? ? ? ? console.log('監(jiān)聽layer,單擊了矢量對象', event)

? ? ? })

? ? ? graphicLayer.on(this.mars3d.EventType.mouseOver, function (event) {

? ? ? ? console.log('監(jiān)聽layer,鼠標移入了矢量對象', event)

? ? ? })

? ? ? graphicLayer.on(this.mars3d.EventType.mouseOut, function (event) {

? ? ? ? console.log('監(jiān)聽layer,鼠標移出了矢量對象', event)

? ? ? })

? ? ? // 可在圖層上綁定popup,對所有加到這個圖層的矢量數(shù)據(jù)都生效

? ? ? graphicLayer.bindPopup('我是layer上綁定的Popup', {

? ? ? ? anchor: [0, -10]

? ? ? })

? ? ? // 可在圖層綁定右鍵菜單,對所有加到這個圖層的矢量數(shù)據(jù)都生效

? ? ? graphicLayer.bindContextMenu([

? ? ? ? {

? ? ? ? ? text: '刪除對象',

? ? ? ? ? iconCls: 'fa fa-trash-o',

? ? ? ? ? callback: function (e) {

? ? ? ? ? ? const graphic = e.graphic

? ? ? ? ? ? if (graphic) {

? ? ? ? ? ? ? graphicLayer.removeGraphic(graphic)

? ? ? ? ? ? }

? ? ? ? ? }

? ? ? ? }

? ? ? ])

? ? },

? ? addDemoGraphic1: (graphicLayer) => {

? ? ? const graphic = new mars3d.graphic.LabelEntity({

? ? ? ? position: new mars3d.LngLatPoint(116.1, 31.0, 1000),

? ? ? ? style: {

? ? ? ? ? text: '火星科技Mars3D平臺',

? ? ? ? ? font_size: 25,

? ? ? ? ? font_family: '楷體',

? ? ? ? ? color: '#003da6',

? ? ? ? ? outline: true,

? ? ? ? ? outlineColor: '#bfbfbf',

? ? ? ? ? outlineWidth: 2,

? ? ? ? ? horizontalOrigin: Cesium.HorizontalOrigin.CENTER,

? ? ? ? ? verticalOrigin: Cesium.VerticalOrigin.BOTTOM,

? ? ? ? ? visibleDepth: false

? ? ? ? },

? ? ? ? attr: { remark: '示例1' }

? ? ? })

? ? ? graphicLayer.addGraphic(graphic)

? ? },

? ? addDemoGraphic2: (graphicLayer) => {

? ? ? const graphic = new mars3d.graphic.PointEntity({

? ? ? ? position: [116.2, 31.0, 1000],

? ? ? ? style: {

? ? ? ? ? color: '#ff0000',

? ? ? ? ? pixelSize: 10,

? ? ? ? ? outline: true,

? ? ? ? ? outlineColor: '#ffffff',

? ? ? ? ? outlineWidth: 2

? ? ? ? },

? ? ? ? attr: { remark: '示例2' }

? ? ? })

? ? ? graphicLayer.addGraphic(graphic)

? ? },

? ? addDemoGraphic3: (graphicLayer) => {

? ? ? const graphic = new mars3d.graphic.BillboardEntity({

? ? ? ? name: '貼地圖標',

? ? ? ? position: [116.3, 31.0, 1000],

? ? ? ? style: {

? ? ? ? ? image: 'img/marker/mark-blue.png',

? ? ? ? ? scale: 1,

? ? ? ? ? horizontalOrigin: Cesium.HorizontalOrigin.CENTER,

? ? ? ? ? verticalOrigin: Cesium.VerticalOrigin.BOTTOM,

? ? ? ? ? clampToGround: true

? ? ? ? },

? ? ? ? attr: { remark: '示例3' }

? ? ? })

? ? ? graphicLayer.addGraphic(graphic)

? ? },

? ? addDemoGraphic4: (graphicLayer) => {

? ? ? const graphic = new mars3d.graphic.PlaneEntity({

? ? ? ? position: new mars3d.LngLatPoint(116.4, 31.0, 1000),

? ? ? ? style: {

? ? ? ? ? plane: new Cesium.Plane(Cesium.Cartesian3.UNIT_Z, 0.0),

? ? ? ? ? dimensions: new Cesium.Cartesian2(4000.0, 4000.0),

? ? ? ? ? materialType: mars3d.MaterialType.Image2,

? ? ? ? ? materialOptions: {

? ? ? ? ? ? image: 'img/textures/poly-rivers.png',

? ? ? ? ? ? transparent: true

? ? ? ? ? }

? ? ? ? },

? ? ? ? attr: { remark: '示例4' }

? ? ? })

? ? ? graphicLayer.addGraphic(graphic)

? ? },

? ? addDemoGraphic5: (graphicLayer) => {

? ? ? const graphic = new mars3d.graphic.BoxEntity({

? ? ? ? position: new mars3d.LngLatPoint(116.5, 31.0, 1000),

? ? ? ? style: {

? ? ? ? ? dimensions: new Cesium.Cartesian3(2000.0, 2000.0, 2000.0),

? ? ? ? ? fill: true,

? ? ? ? ? color: '#00ffff',

? ? ? ? ? opacity: 0.9,

? ? ? ? ? heading: 45,

? ? ? ? ? roll: 45,

? ? ? ? ? pitch: 0

? ? ? ? },

? ? ? ? attr: { remark: '示例5' }

? ? ? })

? ? ? graphicLayer.addGraphic(graphic)

? ? },

? ? addDemoGraphic6: (graphicLayer) => {

? ? ? const graphic = new mars3d.graphic.CircleEntity({

? ? ? ? position: [116.1, 30.9, 1000],

? ? ? ? style: {

? ? ? ? ? radius: 1800.0,

? ? ? ? ? color: '#00ff00',

? ? ? ? ? opacity: 0.3,

? ? ? ? ? outline: true,

? ? ? ? ? outlineWidth: 3,

? ? ? ? ? outlineColor: '#ffffff',

? ? ? ? ? clampToGround: true

? ? ? ? },

? ? ? ? popup: '直接傳參的popup',

? ? ? ? attr: { remark: '示例6' }

? ? ? })

? ? ? graphicLayer.addGraphic(graphic)

? ? },

? ? addDemoGraphic7: (graphicLayer) => {

? ? ? const graphic = new mars3d.graphic.CylinderEntity({

? ? ? ? position: [116.2, 30.9, 1000],

? ? ? ? style: {

? ? ? ? ? length: 3000.0,

? ? ? ? ? topRadius: 0.0,

? ? ? ? ? bottomRadius: 1300.0,

? ? ? ? ? color: '#00FFFF',

? ? ? ? ? opacity: 0.7

? ? ? ? },

? ? ? ? popup: '直接傳參的popup',

? ? ? ? attr: { remark: '示例7' }

? ? ? })

? ? ? graphicLayer.addGraphic(graphic)

? ? },

? ? addDemoGraphic8: (graphicLayer) => {

? ? ? const graphic = new mars3d.graphic.EllipsoidEntity({

? ? ? ? position: new mars3d.LngLatPoint(116.3, 30.9, 1000),

? ? ? ? style: {

? ? ? ? ? radii: new Cesium.Cartesian3(1500.0, 1500.0, 1500.0),

? ? ? ? ? color: 'rgba(255,0,0,0.5)',

? ? ? ? ? outline: true,

? ? ? ? ? outlineColor: 'rgba(255,255,255,0.3)'

? ? ? ? },

? ? ? ? attr: { remark: '示例8' }

? ? ? })

? ? ? graphicLayer.addGraphic(graphic)

? ? },

? ? addDemoGraphic9: (graphicLayer) => {

? ? ? const graphic = new mars3d.graphic.ModelEntity({

? ? ? ? name: '消防員',

? ? ? ? position: [116.4, 30.9, 1000],

? ? ? ? style: {

? ? ? ? ? url: '//data.mars3d.cn/gltf/mars/firedrill/xiaofangyuan-run.gltf',

? ? ? ? ? scale: 16,

? ? ? ? ? minimumPixelSize: 100

? ? ? ? },

? ? ? ? attr: { remark: '示例9' }

? ? ? })

? ? ? graphicLayer.addGraphic(graphic)

? ? },

? ? addDemoGraphic10: (graphicLayer) => {

? ? ? const graphic = new mars3d.graphic.PolylineEntity({

? ? ? ? positions: [

? ? ? ? ? [116.5, 30.9, 1000],

? ? ? ? ? [116.52, 30.91, 1000],

? ? ? ? ? [116.53, 30.89, 1000]

? ? ? ? ],

? ? ? ? style: {

? ? ? ? ? width: 5,

? ? ? ? ? color: '#3388ff'

? ? ? ? },

? ? ? ? attr: { remark: '示例10' }

? ? ? })

? ? ? graphicLayer.addGraphic(graphic) // 還可以另外一種寫法: graphic.addTo(graphicLayer)

? ? },

? ? addDemoGraphic11: (graphicLayer) => {

? ? ? const graphic = new mars3d.graphic.PolylineVolumeEntity({

? ? ? ? positions: [

? ? ? ? ? [116.1, 30.8, 1000],

? ? ? ? ? [116.12, 30.81, 1000],

? ? ? ? ? [116.13, 30.79, 1000]

? ? ? ? ],

? ? ? ? style: {

? ? ? ? ? shape: 'pipeline',

? ? ? ? ? radius: 80,

? ? ? ? ? color: '#3388ff',

? ? ? ? ? opacity: 0.9

? ? ? ? },

? ? ? ? attr: { remark: '示例11' }

? ? ? })

? ? ? graphicLayer.addGraphic(graphic) // 還可以另外一種寫法: graphic.addTo(graphicLayer)

? ? },

? ? addDemoGraphic12: (graphicLayer) => {

? ? ? const graphic = new mars3d.graphic.CorridorEntity({

? ? ? ? positions: [

? ? ? ? ? [116.2, 30.8, 1000],

? ? ? ? ? [116.22, 30.81, 1000],

? ? ? ? ? [116.23, 30.79, 1000],

? ? ? ? ? [116.247328, 30.806077, 610.41]

? ? ? ? ],

? ? ? ? style: {

? ? ? ? ? width: 500,

? ? ? ? ? color: '#3388ff'

? ? ? ? },

? ? ? ? attr: { remark: '示例12' }

? ? ? })

? ? ? graphicLayer.addGraphic(graphic) // 還可以另外一種寫法: graphic.addTo(graphicLayer)

? ? },

? ? addDemoGraphic13: (graphicLayer) => {

? ? ? const graphic = new mars3d.graphic.WallEntity({

? ? ? ? positions: [

? ? ? ? ? [116.3, 30.8, 1000],

? ? ? ? ? [116.31, 30.81, 1000],

? ? ? ? ? [116.334639, 30.800735, 721.39],

? ? ? ? ? [116.32, 30.79, 1000]

? ? ? ? ],

? ? ? ? style: {

? ? ? ? ? closure: true,

? ? ? ? ? diffHeight: 500,

? ? ? ? ? // 動畫線材質

? ? ? ? ? materialType: mars3d.MaterialType.LineFlow,

? ? ? ? ? materialOptions: {

? ? ? ? ? ? image: 'img/textures/fence.png',

? ? ? ? ? ? color: '#00ff00',

? ? ? ? ? ? speed: 10,

? ? ? ? ? ? axisY: true

? ? ? ? ? }

? ? ? ? },

? ? ? ? attr: { remark: '示例13' }

? ? ? })

? ? ? graphicLayer.addGraphic(graphic) // 還可以另外一種寫法: graphic.addTo(graphicLayer)

? ? },

? ? addDemoGraphic14: (graphicLayer) => {

? ? ? const graphic = new mars3d.graphic.RectangleEntity({

? ? ? ? positions: [

? ? ? ? ? [116.383144, 30.819978, 444.42],

? ? ? ? ? [116.42216, 30.793431, 1048.07]

? ? ? ? ],

? ? ? ? style: {

? ? ? ? ? color: '#3388ff',

? ? ? ? ? opacity: 0.5,

? ? ? ? ? outline: true,

? ? ? ? ? outlineWidth: 3,

? ? ? ? ? outlineColor: '#ffffff'

? ? ? ? },

? ? ? ? attr: { remark: '示例14' }

? ? ? })

? ? ? graphicLayer.addGraphic(graphic) // 還可以另外一種寫法: graphic.addTo(graphicLayer)

? ? },

? ? addDemoGraphic15: (graphicLayer) => {

? ? ? const graphic = new mars3d.graphic.PolygonEntity({

? ? ? ? positions: [

? ? ? ? ? [116.510278, 30.834372, 567.29],

? ? ? ? ? [116.530085, 30.809331, 448.31],

? ? ? ? ? [116.507367, 30.788551, 98.21],

? ? ? ? ? [116.472468, 30.823091, 677.39]

? ? ? ? ],

? ? ? ? style: {

? ? ? ? ? materialType: mars3d.MaterialType.Water,

? ? ? ? ? materialOptions: {

? ? ? ? ? ? normalMap: 'img/textures/waterNormals.jpg', // 水正常擾動的法線圖

? ? ? ? ? ? frequency: 8000.0, // 控制波數(shù)的數(shù)字。

? ? ? ? ? ? animationSpeed: 0.02, // 控制水的動畫速度的數(shù)字。

? ? ? ? ? ? amplitude: 5.0, // 控制水波振幅的數(shù)字。

? ? ? ? ? ? specularIntensity: 0.8, // 控制鏡面反射強度的數(shù)字。

? ? ? ? ? ? baseWaterColor: '#006ab4', // rgba顏色對象基礎顏色的水。#00ffff,#00baff,#006ab4

? ? ? ? ? ? blendColor: '#006ab4' // 從水中混合到非水域時使用的rgba顏色對象。

? ? ? ? ? }

? ? ? ? },

? ? ? ? attr: { remark: '示例15' }

? ? ? })

? ? ? graphicLayer.addGraphic(graphic) // 還可以另外一種寫法: graphic.addTo(graphicLayer)

? ? }

? }

}

</script>

<style>

.mapcontainer {

? position: relative;

? height: 100%;

? overflow: hidden;

}

</style>

其次:

<template>

? <div :id="`mars3d-container${mapKey}`" class="mars3d-container"></div>

</template>

<script>

import Vue from "vue";

// 使用免費開源版本

// import "mars3d-cesium/Build/Cesium/Widgets/widgets.css";

// import "mars3d/dist/mars3d.css";

// import * as mars3d from "mars3d";

// const Cesium = mars3d.Cesium;

// let mars3d = window.mars3d;

// 導入插件(其他插件類似,插件清單訪問:http://mars3d.cn/dev/guide/start/architecture.html)

// echarts插件

// import 'mars3d-echarts'

// 為了方便使用,綁定到原型鏈,在其他vue文件,直接 this.mars3d 來使用

// Vue.prototype.mars3d = mars3d

// Vue.prototype.Cesium = mars3d.Cesium

export default {

? name: "mars3dViewer",

? props: {

? ? // 地圖唯一性標識

? ? mapKey: {

? ? ? type: String,

? ? ? default: "",

? ? },

? ? // 初始化配置config.json的地址

? ? url: String,

? ? // 自定義參數(shù)

? ? options: Object,

? },

? mounted() {

? ? window.mars3d.Resource.fetchJson({ url: this.url }).then((data) => {

? ? ? // 構建地圖

? ? ? this.initMars3d({

? ? ? ? ...data.map3d,

? ? ? ? ...this.options,

? ? ? });

? ? });

? },

? beforeDestroy() {

? ? const map = this[`map${this.mapKey}`];

? ? if (map) {

? ? ? map.destroy();

? ? ? delete this[`map${this.mapKey}`];

? ? }

? ? console.log(">>>>> 地圖卸載完成 >>>>");

? },

? methods: {

? ? initMars3d(mapOptions) {

? ? ? console.log(mapOptions);

? ? ? // if (this[`map${this.mapKey}`]) {

? ? ? // ? this[`map${this.mapKey}`].destroy();

? ? ? // }

? ? ? // 創(chuàng)建三維地球場景

? ? ? var map = new window.mars3d.Map(

? ? ? ? `mars3d-container${this.mapKey}`,

? ? ? ? mapOptions

? ? ? );

? ? ? this[`map${this.mapKey}`] = map;

? ? ? console.log(">>>>> 地圖創(chuàng)建成功 >>>>", map);

? ? ? // 掛載到全局對象下,所有組件通過 this.map 訪問

? ? ? // Vue.prototype[`map${this.mapKey}`] = map

? ? ? // 綁定對alert的處理,右鍵彈出信息更美觀。

? ? ? // window.haoutil = window.haoutil || {}

? ? ? // window.haoutil.msg = (msg) => {

? ? ? // ? this.$message.success(msg)

? ? ? // }

? ? ? // window.haoutil.alert = (msg) => {

? ? ? // ? this.$message.success(msg)

? ? ? // }

? ? ? // 拋出事件

? ? ? this.$emit("onload", map);

? ? },

? },

};

</script>

<style>

.mars3d-container {

? height: 100%;

? overflow: hidden;

}

/**cesium 工具按鈕欄*/

.cesium-viewer-toolbar {

? top: auto !important;

? bottom: 35px !important;

? left: 12px !important;

? right: auto !important;

}

.cesium-toolbar-button img {

? height: 100%;

}

.cesium-viewer-toolbar > .cesium-toolbar-button,

.cesium-navigationHelpButton-wrapper,

.cesium-viewer-geocoderContainer {

? margin-bottom: 5px;

? float: left;

? clear: both;

? text-align: center;

}

.cesium-button {

? background-color: #3f4854;

? color: #e6e6e6;

? fill: #e6e6e6;

? box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);

? line-height: 32px;

}

/**cesium 底圖切換面板*/

.cesium-baseLayerPicker-dropDown {

? bottom: 0;

? left: 40px;

? max-height: 700px;

? margin-bottom: 5px;

}

/**cesium 幫助面板*/

.cesium-navigation-help {

? top: auto;

? bottom: 0;

? left: 40px;

? transform-origin: left bottom;

}

/**cesium 二維三維切換*/

.cesium-sceneModePicker-wrapper {

? width: auto;

}

.cesium-sceneModePicker-wrapper .cesium-sceneModePicker-dropDown-icon {

? float: right;

? margin: 0 3px;

}

/**cesium POI查詢輸入框*/

.cesium-viewer-geocoderContainer .search-results {

? left: 0;

? right: 40px;

? width: auto;

? z-index: 9999;

}

.cesium-geocoder-searchButton {

? background-color: #3f4854;

}

.cesium-viewer-geocoderContainer .cesium-geocoder-input {

? background-color: rgba(63, 72, 84, 0.7);

}

.cesium-viewer-geocoderContainer .cesium-geocoder-input:focus {

? background-color: rgba(63, 72, 84, 0.9);

}

.cesium-viewer-geocoderContainer .search-results {

? background-color: #3f4854;

}

/**cesium info信息框*/

.cesium-infoBox {

? top: 50px;

? background: rgba(63, 72, 84, 0.9);

}

.cesium-infoBox-title {

? background-color: #3f4854;

}

/**cesium 任務欄的FPS信息*/

.cesium-performanceDisplay-defaultContainer {

? top: auto;

? bottom: 35px;

? right: 50px;

}

.cesium-performanceDisplay-ms,

.cesium-performanceDisplay-fps {

? color: #fff;

}

/**cesium tileset調試信息面板*/

.cesium-viewer-cesiumInspectorContainer {

? top: 10px;

? left: 10px;

? right: auto;

? background-color: #3f4854;

}

</style>

vue集成mars3d后,basemaps加不上去,vue.js,3d,前端

問題的原因是:

服務有返回東西,使用的就是示例中的配置;數(shù)據(jù)正常返回了,mock攔截機制的原因,自行處理把mock注釋掉就解決了。

vue集成mars3d后,basemaps加不上去,vue.js,3d,前端

?vue集成mars3d后,basemaps加不上去,vue.js,3d,前端

vue集成mars3d后,basemaps加不上去,vue.js,3d,前端?

?文章來源地址http://www.zghlxwxcb.cn/news/detail-686358.html

到了這里,關于vue集成mars3d后,basemaps加不上去的文章就介紹完了。如果您還想了解更多內容,請在右上角搜索TOY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關文章,希望大家以后多多支持TOY模板網(wǎng)!

本文來自互聯(lián)網(wǎng)用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權,不承擔相關法律責任。如若轉載,請注明出處: 如若內容造成侵權/違法違規(guī)/事實不符,請點擊違法舉報進行投訴反饋,一經(jīng)查實,立即刪除!

領支付寶紅包贊助服務器費用

相關文章

  • Vue2項目使用mars3d

    或參考webpack.config.js寫法進行修改

    2024年02月14日
    瀏覽(57)
  • Mars3D/Cesium + VUE3

    不定期更新 參考官網(wǎng): http://mars3d.cn/dev/guide/start/import.html#_3-3-vite-%E6%8A%80%E6%9C%AF%E6%A0%88%E6%97%B6-%E7%9A%84%E9%A1%B9%E7%9B%AE%E9%85%8D%E7%BD%AE%E4%BF%AE%E6%94%B9 :已親測vite框架,可以運行,具體見下main 1、插件 vite-plugin-mars3d vite中需要

    2024年02月14日
    瀏覽(31)
  • vue3使用Mars3D寫區(qū)塊地圖

    vue3使用Mars3D寫區(qū)塊地圖

    因為我也是第一次使用,所以我是把插件和源文件都引入了,能使用啟動 源文件 下載地址: http://mars3d.cn/download.html 放入位置 在index.html中引入 引入插件 我是封裝的組件,代碼的使用和意義 我直接放在備注中 大體布局 父組件 添加地圖內部數(shù)據(jù)和地圖外部數(shù)據(jù)的方法 ,我都

    2024年01月20日
    瀏覽(50)
  • Mars3D手把手開發(fā)教程(vue3)

    Mars3D手把手開發(fā)教程(vue3)

    Mars3D三維可視化平臺 ?是火星科技?(opens new window)研發(fā)的一款基于 WebGL 技術實現(xiàn)的三維客戶端開發(fā)平臺,基于Cesium?(opens new window)優(yōu)化提升與B/S架構設計,支持多行業(yè)擴展的輕量級高效能GIS開發(fā)平臺,能夠免安裝、無插件地在瀏覽器中高效運行,并可快速接入與使用多種GIS數(shù)

    2024年04月15日
    瀏覽(32)
  • Mars3d引用單個示例文件WeiVectorTileLayer.js報錯的解決辦法

    Mars3d引用單個示例文件WeiVectorTileLayer.js報錯的解決辦法

    參考文檔修改文件后,發(fā)現(xiàn)依然報錯: Mars3d單獨引用示例文件教程_3d文件示例_綿綿-火星科技的博客-CSDN博客 具體報錯截圖: es5的方式直接丟到mars3d包下,mars3d如果node方式引入,這個衛(wèi)片js就需要改造下暴漏主函數(shù)名。 ?看報錯是:?CesiumVectorTile.js里的錯誤,進去看看錯誤行

    2023年04月21日
    瀏覽(40)
  • Vue3項目中集成mars3D簡單三部曲

    Vue3項目中集成mars3D簡單三部曲

    這里是參考網(wǎng)址,大佬可以點擊一件跳轉 1.安裝依賴 2.修改 vite.config.ts 配置文件 3. 新建DIV容器 + 創(chuàng)建地圖 新建map.ts文件,以下代碼閉眼直接copy vue文件引入map.ts,以下代碼閉眼直接copy 快去試試吧~

    2024年01月25日
    瀏覽(24)
  • 【mars3d】基于vue3的marsgis通用UI庫 mars-ui 的使用

    【mars3d】基于vue3的marsgis通用UI庫 mars-ui 的使用

    一名腦殘程序員的mars-ui心酸使用記錄。 通過mars3d的官網(wǎng)我們可以看到,有配套的UI庫使用,那么我們如何使用到自己的項目中呢,跟著文章一步一步來吧! 1、引入UI庫 ① 安裝 ant-design-vue ② 下載基于vue開發(fā)的mars3d的源碼,直通車: git clone https://gitee.com/marsgis/mars3d-vue-project.gi

    2024年02月09日
    瀏覽(79)
  • Mars3D使用教程

    Mars3D使用教程

    1、使用npm安裝依賴庫 //安裝mars3d主庫 ? //安裝mars3d插件(按需安裝) ? //安裝copy-webpack-plugin 插件在第3步中使用,根據(jù)webpack版本安裝,不匹配的版本可能出錯,版本需要5.0 “copy-webpack-plugin”: “^5.0.0”, 2.在main.js全局導入 或者 在使用mars3d的文件中導入(這一步可以跳過,

    2024年02月02日
    瀏覽(30)
  • mars3d繪制區(qū)域范圍(面+邊框)

    mars3d繪制區(qū)域范圍(面+邊框)

    1、圖例(綠色面區(qū)域+白色邊框) ?2、代碼 1)、繪制區(qū)域ts文件 解釋: 1、new mars3d.layer.GeoJsonLayer ? ? ?生成矢量圖層 2、styleField ? ? ? \\\"levels\\\" 是在json文件中區(qū)分不同級別景區(qū)的標志,值為1、2、3等 3、styleFieldOptions ? ? ? 根據(jù)styleField獲取到的值進行區(qū)分,劃分不同顏色的

    2024年02月15日
    瀏覽(26)
  • Mars3D Studio 的使用方法

    Mars3D Studio 的使用方法

    mars3d Studio 是 mars3d 研發(fā)團隊于近期研發(fā)上線的一款 場景可視化編輯平臺。擁有資源存檔、團隊協(xié)作、定制材質等豐富的功能??梢詫崿F(xiàn)零代碼構建一個可視化三維場景。 (1)數(shù)據(jù)上傳:目前支持 tif 影像上傳、 3dtitles 、 gltf 小模型上傳以及矢量數(shù)據(jù)( shp、gesojson、kml ) 下

    2023年04月16日
    瀏覽(29)

覺得文章有用就打賞一下文章作者

支付寶掃一掃打賞

博客贊助

微信掃一掃打賞

請作者喝杯咖啡吧~博客贊助

支付寶掃一掃領取紅包,優(yōu)惠每天領

二維碼1

領取紅包

二維碼2

領紅包