import React, {Component} from 'react'
|
import {NavLink} from "react-router-dom";
|
import styles from "./AboutUsPage.css"
|
|
export default class AboutUsPage extends Component {
|
render() {
|
const {children} = this.props;
|
return (
|
<div className={"about_us"}>
|
<h2>2d</h2>
|
<section>
|
for leaflet 例子:
|
<a href="https://iclient.supermap.io/examples/leaflet/examples.html">https://iclient.supermap.io/examples/leaflet/examples.html</a>
|
</section>
|
<section>
|
for leaflet api:
|
<a href="https://iclient.supermap.io/web/apis/leaflet.html">https://iclient.supermap.io/web/apis/leaflet.html</a>
|
</section>
|
<section>
|
leaflet api:
|
<a href="https://leafletjs.com/reference-1.7.1.html">https://leafletjs.com/reference-1.7.1.html</a>
|
</section>
|
|
<h2></h2>
|
<h2>3d</h2>
|
<section>
|
iclient3d 例子:
|
<a href="http://support.supermap.com.cn:8090/webgl/Cesium/web/index.html">http://support.supermap.com.cn:8090/webgl/Cesium/web/index.html</a>
|
</section>
|
<section>
|
iclient3d api:
|
<a href="http://support.supermap.com.cn:8090/webgl/docs/Documentation/index.html">http://support.supermap.com.cn:8090/webgl/docs/Documentation/index.html</a>
|
</section>
|
<section>
|
cesium api:
|
<a href="https://cesium.com/learn/cesiumjs/ref-doc/">https://cesium.com/learn/cesiumjs/ref-doc/</a>
|
</section>
|
|
<h2></h2>
|
<h2>技术支持</h2>
|
<section>
|
<a href="http://support.supermap.com.cn">北京超图软件股份有限公司</a>
|
</section>
|
</div>
|
)
|
}
|
}
|