intaleq_maps 1.0.0 copy "intaleq_maps: ^1.0.0" to clipboard
intaleq_maps: ^1.0.0 copied to clipboard

Premium Flutter SDK for Intaleq Map Platform (Jordan & Syria).

Intaleq Maps SDK for Flutter #

A premium Flutter SDK for the Intaleq Map Platform, optimized for Jordan, Syria, and the broader region. This SDK provides a simplified, developer-friendly interface over MapLibre GL, with built-in support for Intaleq's Routing and Geocoding APIs.

Features #

  • Simplified Geometry: Use Marker, Polyline, Circle, and Polygon (with hole support) instead of complex low-level types.
  • Intaleq Routing: Integrated multi-profile routing API.
  • Intaleq Geocoding: High-performance place search and reverse geocoding.
  • Branding-Ready: Built-in Intaleq branding colors and premium map styles (Obsidian, Light, Satellite).
  • Standalone: No external dependencies required for route decoding.

Getting Started #

Add the following to your pubspec.yaml:

dependencies:
  intaleq_maps: ^1.0.0

Usage #

Initialize the Map #

IntaleqMap(
  apiKey: "YOUR_INTALEQ_API_KEY",
  onMapCreated: (controller) {
    // Access the controller here
  },
)

Add a Marker #

await controller.addMarker(MarkerOptions(
  position: LatLng(33.5138, 36.2765),
  iconImage: "marker-icon",
));

Get a Route #

final routeData = await controller.getRoute(
  LatLng(33.5138, 36.2765),
  LatLng(33.5, 36.3),
);

Documentation #

For full documentation and API reference, visit the Intaleq Documentation.

License #

This project is licensed under the MIT License - see the LICENSE file for details.

1
likes
140
points
261
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Premium Flutter SDK for Intaleq Map Platform (Jordan & Syria).

Homepage
Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter, geolocator, get, http, latlong2, maplibre_gl

More

Packages that depend on intaleq_maps