How to add a marker to a MapBox GL JS map?
I'm trying to add a marker to a MapBox-GL-JS map in a HTML / Javascript map. I've tried to build a little sample: here you are my code <html> <head> <meta charset="utf-8"> <title>Test MapBox</title> <!-- *** References for MapBox GL JS ... --> <script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.37.0/mapbox-gl.js'></script> <link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.37.0/mapbox-gl.css' rel='stylesheet' /> <style> html, body { min-height: 100%; min-width: 100%; margin: 0; padding: 0; } table { width: 95vw; height: 95vh; } td { width: 50%; height: 50%; } </style> </head> <body