29 lines
975 B
HTML
29 lines
975 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<base href="$FLUTTER_BASE_HREF">
|
|
<meta charset="UTF-8">
|
|
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
|
|
<meta name="description" content="Intaleq Premium Mapping.">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
|
<meta name="apple-mobile-web-app-title" content="Intaleq Maps">
|
|
<link rel="icon" type="image/png" href="favicon.png"/>
|
|
<title>Intaleq Premium Maps</title>
|
|
<link rel="manifest" href="manifest.json">
|
|
<link href="https://unpkg.com/maplibre-gl@4.7.1/dist/maplibre-gl.css" rel="stylesheet" />
|
|
<script src="https://unpkg.com/maplibre-gl@4.7.1/dist/maplibre-gl.js"></script>
|
|
<script>
|
|
// Enable RTL support for Arabic labels
|
|
maplibregl.setRTLTextPlugin(
|
|
'./rtl-plugin.js',
|
|
null,
|
|
true // Lazy load the plugin
|
|
);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<script src="flutter_bootstrap.js" async></script>
|
|
</body>
|
|
</html>
|