Creates a mapbox camera.


## Description


In order to use Mapbox inside Polygons, you need to add your Mapbox token.

This is done by adding the following line inside your `PolyConfig.ts` file:

``` ts
Poly.thirdParty.mapbox().setToken('<your token>');
```



## Parameters

<table>
<thead>
	<tr>
		<th>Name</th>
		<th>Type</th>
		<th>Description</th>
	</tr>
</thead>
<tr>
	<td>longitude</td>
	<td><div class='bg-yellow-800 px-2 py-px text-white rounded-sm'>float</div></td>
	<td>longitude</td>
</tr>
<tr>
	<td>latitude</td>
	<td><div class='bg-yellow-800 px-2 py-px text-white rounded-sm'>float</div></td>
	<td>latitude</td>
</tr>
<tr>
	<td>name</td>
	<td><div class='bg-purple-800 px-2 py-px text-white rounded-sm'>string</div></td>
	<td>camera name</td>
</tr>
</table>