Skip to content

shittyday/google_maps_flutter_ios

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

google_maps_flutter_ios

Fork of the official plugin

It uses a beta version of GoogleMaps pod (you will find the exact version number in the Cartfile inside ios directory).

This allows you to run your Flutter app that depends on google_maps_flutter using arm64 architecture on ios simulator.

Usage

⚠️ Tested with google_maps_flutter version 2.1.12

  1. Inside ios/Runner/AppDelegate.swift enable Metal renderer for GoogleMaps if one is available:
    let device = MTLCreateSystemDefaultDevice();
    if (device != nil) {
        GMSServices.setMetalRendererEnabled(true);
    }
  1. Override google_maps_flutter_ios
dependency_overrides:
  google_maps_flutter_ios:
    git:
      url: https://github.com/XperiTech/google_maps_flutter_ios
      ref: <insert hash of last commit>

About

Fork of the official plugin with arm64 simulator support

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Dart 66.3%
  • Objective-C 32.3%
  • Ruby 1.2%
  • Swift 0.2%