SDK下载地址:http://www.bigemap.com/reader/download/detail2019041117.html
当前版本:v1.2.1-slim
一站式搭建离线地图服务器,支持多种地图离线发布;提供快速WEB应用、WMTS、TMS等服务;支持二次开发调用;
Bigemap Server 支持以下操作系统:
注* 部署到 Windows 系统直接下载安装程序。部署到 Linux 系统按照以下步骤。
在安装Bigemap Server之前,需要安装一下依赖项:
Wget、OpenSSL及unzip都是Bigemap Server安装脚本所需,Docker和Docker Compose是服务运行、集成容器。
# Most of these commands need to be run by the root user $ sudo su $ yum check-update $ yum install -y epel-release $ yum install -y wget openssl python-pip unzip # Install Docker $ curl -fsSL https://get.docker.com/ | sh # Add your user to the Docker group. i.e. centos $ usermod -aG docker <your-user-name> # Enable the Docker daemon to start at system boot $ systemctl enable docker.service # Start the Docker daemon $ systemctl start docker.service # Install Docker Compose $ pip install docker-compose
# Update the package database $ sudo apt-get update # Install Docker and Server dependencies $ sudo apt-get install \ linux-image-extra-$(uname -r) \ linux-image-extra-virtual \ apt-transport-https \ ca-certificates \ curl \ software-properties-common \ docker-ce \ wget \ openssl \ unzip # Add the Docker repository to APT sources $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - $ sudo add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) \ stable" # Update the package database with the Docker packages $ sudo apt-get update # Install Docker $ sudo apt-get install -y docker-ce # Add your user to the Docker group. i.e. ubuntu $ sudo usermod -aG docker <your-user-name> # Check the current release and, if necessary, update it in the command below $ sudo curl -L \ https://github.com/docker/compose/releases/download/1.18.0/docker-compose-`uname -s`-`uname -m` \ -o /usr/local/bin/docker-compose # Set execute permissions on docker-compose $ sudo chmod +x /usr/local/bin/docker-compose
# Update the package database $ sudo apt-get update # Install Docker and Server dependencies $ sudo apt-get install -y wget openssl python-pip unzip # Add the Docker repository to APT sources $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - $ sudo add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) \ stable" # Update the package database with the Docker packages $ sudo apt-get update # Make sure you are about to install from the Docker repo $ sudo apt-cache policy docker-ce # Install Docker $ sudo apt-get install -y docker-ce # Add your user to the docker group. i.e. ubuntu $ sudo usermod -aG docker <your-user-name> # Check the current release and, if necessary, update it in the command below $ sudo curl -L \ https://github.com/docker/compose/releases/download/1.18.0/docker-compose-`uname -s`-`uname -m` \ -o /usr/local/bin/docker-compose # Set execute permissions on docker-compose $ sudo chmod +x /usr/local/bin/docker-compose
Bigemap Server installer是命令行脚本(CLI)程序用于下载、安装Bigemap Server。
命令 | 需要联网 | 描述 |
---|---|---|
download |
是 | 下载Bigemap Server |
setup |
否 | 安装Bigemap Server |
list |
是 | 查看发布的历史版本 |
remove |
否 | 卸载Bigemap Server |
unzip bm-server-installer.zip
chmod +x ./bm-server-installer
./bm-server-installer help
根据安装脚本帮助步骤完成安装。