Skip to main content

Posts

Showing posts with the label openlayers

Openlayers Tutorial - Membuat Peta Pertama

Tulisan ini dibuat pada tanggal 26 Februari 2019. 1.1        Inisialisasi Install node (https://nodejs.org/). Buat folder baru (contoh : new-project ) kemudian jalankan npm init dan jawab beberapa pertanyaan yang diajukan. Maka hasilnya adalah sebuah file package.json dengan isi sbb: {   "name": "new-project",   "version": "1.0.0",   "description": "tes development openlayers",   "main": "index.js",   "scripts": {     "test": "echo \"Error: no test specified\" && exit 1"   },   "author": "sujana",   "license": "ISC" } 1.2        install module openlayers npm install ol maka hasilnya akan terbentuk file package-lock.json dan folder -folder dependency yang terdaftar pada file tersebut secara default module openlayers yang diinstall adalah versi terakhir ...