Skip to Content
Introduction

Lazarillo Maps Flutter

lazarillo_maps package is made using Flutter. Now we support vector map functionalities and location using beacons for indoor navigation.

This site is for developers and contains endpoints for the use of Lazarillo functionalities. You need to have an Api Key which allows to you have access. If you donโ€™t have this please contact us.

๐Ÿš€ Quick Start

Installation

Install lazarillo_maps on pubspec.yaml

dependencies: flutter: sdk: flutter lazarillo_maps: ^0.0.51

For detailed installation instructions, see Installation Guide.

๐Ÿ“š Documentation

Setup & Configuration

API Reference

Examples

๐Ÿ”‘ API Key

You need an API key to use Lazarillo Maps. Contact us at lazarillo.appย  to get your API key.

๐Ÿ“– Quick Usage

import 'package:lazarillo_maps/lazarillo_maps.dart'; // Initialize final lazarilloMaps = LazarilloMaps('your-api-key'); await lazarilloMaps.initialize(); // Create map widget final mapWidget = lazarilloMaps.getLazarilloMapWidget( MapConfiguration( parentPlaceId: 'your-place-id', latitude: 40.7128, longitude: -74.0060, zoom: 15.0, ), (mapId) => print('Map ready: $mapId'), );

๐Ÿ†˜ Support

If you have issues:

  1. Check the Installation Guide for setup instructions
  2. Verify permissions are properly configured in Permissions Setup
  3. Review the Examples for usage patterns
  4. Check Production & Logging Guide for production considerations
  5. Contact support at MapVX.comย 
Last updated on