DYNAMIC Mapbox Maps in FlutterFlow (Pt.1): Markers

Поделиться
HTML-код
  • Опубликовано: 23 ноя 2024

Комментарии • 46

  • @aliumut33
    @aliumut33 8 месяцев назад +4

    very well done. It is the only tutorial for dynamic map with mapbox and flutterflow. I'm searching this one for a while. If you elaborate this in part 2 and 3 with custom markers, it will be great.

    • @KingsAppDesign
      @KingsAppDesign  8 месяцев назад +1

      Part 2 comes out tommorow!

    • @aliumut33
      @aliumut33 8 месяцев назад

      Curious to see.@@KingsAppDesign

  • @RoySabag
    @RoySabag 8 месяцев назад +1

    Awesome ! waiting for part 2

  • @ravenstudio4611
    @ravenstudio4611 8 месяцев назад +1

    Great job. waiting for part 2

  • @danilogarcia6317
    @danilogarcia6317 8 месяцев назад +1

    Next part pleasee! :) awesome video!

  • @RustemJaparov
    @RustemJaparov 5 месяцев назад

    It looks great! However I couldn’t do this. When I try to compile my code FlutterFlow displays that my widget is empty. I asked Chat GPT to check the code even after that it persists. I don’t know what is wrong

  • @ericdasilva9990
    @ericdasilva9990 22 дня назад

    This still working? Im try replicate this widget into my FF aplication, but not working, maybe has some dependencies error.

  • @sumeshsivan007
    @sumeshsivan007 9 дней назад

    Hi KingsAppDesign,
    I tried to replicate what you did in the video. However, the map is not appearing on the screen. I can see only one marker in the middle of the screen with a blank background. Is there anyway you can help me?

    • @sumeshsivan007
      @sumeshsivan007 4 дня назад

      Found my solution. Turns out, I missed to add layers in the mapbox style. Without the layers, the map will be blank

  • @RussVandy
    @RussVandy 8 месяцев назад +1

    Very helpful

  • @manuelquintana7129
    @manuelquintana7129 2 месяца назад +4

    Great video bro. But when compiling I'm getting 2 errors. Please can you help me. 1 error with the Child parameter which is required. And the second error tells me that the build parameter is not defined.

    • @TheSilentPrince
      @TheSilentPrince 2 месяца назад +2

      same with me

    • @andrefernando790
      @andrefernando790 2 месяца назад +2

      change build to child like this
      void addMarkersToMap(List? points) {
      for (LatLng point in points!) {
      allMarkers.add(
      Marker(
      point: ll.LatLng(point.latitude, point.longitude),
      height: 12,
      width: 12,
      child: Icon(
      Icons.location_pin,
      color: Colors.red,
      ),
      ),
      );
      }
      }

    • @andrefernando790
      @andrefernando790 2 месяца назад +1

      or change the versio is more correct flutter_map: ^5.0.0 & latlong2: ^0.9.0.

    • @manuelquintana7129
      @manuelquintana7129 2 месяца назад

      @@andrefernando790 thanks you bro!!!

    • @manuelquintana7129
      @manuelquintana7129 2 месяца назад +1

      @@andrefernando790 work wonderfull !!! But my style dont work.. i need use "mapbox/streets-v12" but nice !

  • @p4u1ro13
    @p4u1ro13 7 месяцев назад +1

    genial gracias.. pls haz un video con marks from firebase ty..

  • @johndemolbot
    @johndemolbot 5 месяцев назад

    I got the markers from a firestore query which fires at page load but the map only shows after i click on the page and also when i navigate to another page and back it doest work also not if i click somewhere in the page.

  • @koen.mortier_fitchen
    @koen.mortier_fitchen 7 месяцев назад

    Holy s this was on another level than your beginner tutorial of a to do app, where I understood what I was doing. Thanks though

  • @Academia3W
    @Academia3W 6 месяцев назад

    My lat and long are in separated variables, the latlng list requires they together,; how can i solve it if i work with xano ?

  • @ElderMarx
    @ElderMarx 8 месяцев назад +1

    part 2 nowwww! haha thanks man

  • @Evgeny..
    @Evgeny.. 8 месяцев назад +1

    очень классный проект! Спасибо большое!

  • @emariem1409
    @emariem1409 6 месяцев назад +2

    Hi! I don't know why, but I've tried this code thrice already in flutterflow, but it keeps saying that marker should have The named parameter 'child' is required, but there's no corresponding argument. And then for the builder, The named parameter 'builder' isn't defined.
    Try correcting the name to an existing named parameter's name, or defining a named parameter with the name .
    Can you please help me? I'm really having a hard time.

    • @emariem1409
      @emariem1409 6 месяцев назад +2

      i use the updated version of flutter_map and latlong2 but it's just not working for me :(.

    • @KingsAppDesign
      @KingsAppDesign  6 месяцев назад +2

      Hi, the issue is actually that you are using the updated version of flutter_map, which I didn’t use for this video. The versions I was using in this video are: flutter_map: ^5.0.0 & latlong2: ^0.9.0. Hope this helps!

    • @lgk9564
      @lgk9564 6 месяцев назад +2

      ​@@KingsAppDesignThere solution for current version? I did like version you say, but not show the map, just the markers... 😢 ...this with mapsbox...

    • @guillermo3649
      @guillermo3649 6 месяцев назад

      Tengo el mismo problema, solo puedo ver los marcadores ​@@lgk9564

    • @andrefernando790
      @andrefernando790 2 месяца назад

      @@lgk9564 when you fix this plz tell us

  • @ai5phut
    @ai5phut 8 месяцев назад +1

    Thank you so much! I'd like to know the steps to get code app from FlutterFlow to VS Code for editing and self-learning. Could you provide some guidance, additionally, can you show me how to merge these code segments together. I'm new to Flutter and FlutterFlow.

    • @nikhilkamble7585
      @nikhilkamble7585 8 месяцев назад +1

      Did you get the solution brother

    • @ai5phut
      @ai5phut 8 месяцев назад

      @@nikhilkamble7585 Thank you, bro! I still don't know any solution

    • @ai5phut
      @ai5phut 8 месяцев назад

      @@nikhilkamble7585 I still don't know any solution. You bro?

  • @qaisarathariq
    @qaisarathariq 7 месяцев назад

    cool map but can i replace the marker shape with my own icon or image ?

  • @Supergab85
    @Supergab85 8 месяцев назад +1

    can you pls share the final widget code? so I'll import right away inside my FF

    • @KingsAppDesign
      @KingsAppDesign  7 месяцев назад +2

      Hi Gabriele, I have all the code posted in my discord channel! discord.gg/WvnrM4fewB

  • @passionboy7542
    @passionboy7542 7 месяцев назад

    think all flutterflow users waiting this content somewhere loool

  • @narusempai8678
    @narusempai8678 8 месяцев назад

    please make a video for map direction route

  • @Evgeny..
    @Evgeny.. 8 месяцев назад

    Подскажи почему у Marker выдает ошибку если написать builder? автокомплит дает подставить только build и child

    • @KingsAppDesign
      @KingsAppDesign  7 месяцев назад

      You may have the wrong package dependency. I am using a package that’s slightly outdated. Check the flutter_map version.

  • @danzreview
    @danzreview 8 месяцев назад

    cool bro do yiu have discord