# fsMapViewDelete This function is used to delete a (previously created) MapView.     ##### Syntax ``` wasm bool fsMapViewDelete( FsContext ctx, FsTextureId id ) ```   ##### Members {{< table-wrapper >}} | Parameters | Description | |------------|----------------------------------------------------------------------------| | `ctx` | A value of type `FsContext` provided as an argument of the gauge callback. | | `id` | The MapView render ID as returned by the function `fsMapViewCreate`. | {{< /table-wrapper >}}   ##### Return Values Returns false if: - no texture matches the given MapView ID - the `ctx` is invalid Otherwise it will return true.   ##### Remarks N/A