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
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>
        )
    }
}