Google 3D Maps Import into Blender

Поділитися
Вставка
  • Опубліковано 11 січ 2025

КОМЕНТАРІ • 135

  • @yoshikagearman9412
    @yoshikagearman9412 Рік тому +69

    I live in Iran, where I'm banned from almost every service. I can't use them, yet I'm constantly drawn to watching videos about these topics, finding solace in their virtual embrace. Much love

    • @КимМурзин
      @КимМурзин Рік тому +14

      Use VPN, dude. Im russian, easily avoiding regional bans

    • @yoshikagearman9412
      @yoshikagearman9412 Рік тому

      it need all of your personal data, like post card, address, credit card information, So that's not pretty easy to fake@@КимМурзин

    • @AnikenSkiwalker
      @AnikenSkiwalker Рік тому +2

      Brother. You need to find a way out of there. You are in a prison.

    • @nasigh9882
      @nasigh9882 Рік тому

      شما راهی پیدا کردی برای اینکه از گوگل ببری به بلندر؟اگه پیدا کردی لطفا به منم کمک کن گیج شدم

    • @spearcy
      @spearcy 10 місяців тому +7

      Iran's a beautiful country. Although your access to Google 3d might be limited, you're lucky to live there for other reasons. Here in the U.S., we have a lot of homelessness, gun violence, and terrible access to medical services. Every country has something people from another country wish they had.

  • @prochitecture
    @prochitecture Рік тому +9

    Thank you for the video. I'd like to note that material replacement is provided by the Blosm addon. The material replacement panel appears if one or more mesh objects are selected. That panel can be seen at 3:51 in the video. This feature is also described in the addon documentation in the section "Export and Custom Materials"

    • @shawnchiki9574
      @shawnchiki9574 Рік тому

      I'm finding this might only work with 3.6 ... I tried with 3.9 and the material unpacking was glitched out

    • @shawnchiki9574
      @shawnchiki9574 Рік тому +3

      4.0 works though!*

  • @Culture_TO
    @Culture_TO Рік тому +4

    This add-on works great, I’ve been using it on some projects and very happy with the results for general area imagery and backgrounds.

  • @zachhoy
    @zachhoy Рік тому +3

    I wish there were a script that combined all the objects and materials into one mesh and UV, or a few UVs

  • @ElHongoVerde
    @ElHongoVerde Рік тому +2

    This is awesome. Thank you so much for your work mate.

  • @alexanderkolosovski1435
    @alexanderkolosovski1435 7 місяців тому +4

    Link to the material script is dead.
    Can you please, update it?
    Thanks for sharing the knowledge.

  • @bernard2735
    @bernard2735 Рік тому +1

    Great tutorial, thank you. Liked and subscribed.

  • @sandeeptagrania1398
    @sandeeptagrania1398 6 місяців тому +4

    Hi, I would like to ask if you could reupload the script as it shows as deleted in the dropbox, thanks in advance!

  • @RickDeNatale
    @RickDeNatale Рік тому +2

    I wonder if it would be possible to generate a printable 3D model from this. I’d love to make models of race tracks like Monaco

  • @TommyLikeTom
    @TommyLikeTom Рік тому +2

    This is pretty cool. I used to use a similar tool 6 years ago but it only did the landscape with textures

  • @eureoli
    @eureoli 4 місяці тому

    Amazing Work, thank you for sharring..

  • @AVATARdemon113
    @AVATARdemon113 5 місяців тому +1

    Trying to activate / gemnerate API's, already been trying for over an hour to no avail. Am I missing something>? is there a fee? Does it not work on mac? I'm deep in a rabbit hole trying to just import some of the nice 3d Building data from google earth

  • @_casg
    @_casg 3 місяці тому +1

    I tried to get the buildings off a spot in Dominican Republic but the are no buildings or assets appearing just a flat plane with a picture of the map

  •  7 місяців тому +1

    Hi! I love this tutorial Im trying to get a piece of a town for my architecture project and its resulting good!. I would like to ask if you could reupload the script as it shows as deleted in the dropbox, thanks in advance!

  • @WickedV3ng3nc3
    @WickedV3ng3nc3 3 місяці тому +1

    When I install the Add on it doesnt seem to appear in the list of add ons even when searched.

  •  9 місяців тому

    The ideal is to use Lily Texture packer, that will pack the thousands textures into a single one, so you can use only a single material for all.

  • @artbyalii
    @artbyalii 5 місяців тому +1

    I am getting the straight mesh with texture when I click on Import (any help )

  • @xinversive
    @xinversive 7 місяців тому +7

    Hey guys, here's the material script. Thankfully I never deleted it off my computer.
    import bpy
    # Das aktuell ausgewählte Objekt
    obj = bpy.context.selected_objects[0]
    # Durch alle Materialien des Objekts iterieren
    for mat in obj.data.materials:
    # Den Node-Baum für das aktuelle Material abrufen
    nodes = mat.node_tree.nodes

    # Alle Nodes außer Image Texture und Material Output entfernen
    for node in nodes:
    if node.type not in {'TEX_IMAGE', 'OUTPUT_MATERIAL'}:
    nodes.remove(node)

    # Principled BSDF Node hinzufügen
    bsdf = nodes.new(type='ShaderNodeBsdfPrincipled')
    bsdf.location = (300,0)

    # Brightness/Contrast Node hinzufügen
    contrast_node = nodes.new(type='ShaderNodeBrightContrast')
    contrast_node.location = (150,0)
    contrast_node.inputs['Contrast'].default_value = 0.1
    contrast_node.inputs['Bright'].default_value = -0.1 # Brightness um 0.2 senken

    # Image Texture und Material Output Nodes finden
    image_node = None
    output_node = None
    for node in nodes:
    if node.type == 'TEX_IMAGE':
    image_node = node
    elif node.type == 'OUTPUT_MATERIAL':
    output_node = node

    # Verbindungen herstellen
    if image_node and output_node:
    links = mat.node_tree.links
    # Verbindung von Image Texture Color zu Brightness/Contrast Color
    links.new(image_node.outputs['Color'], contrast_node.inputs['Color'])
    # Verbindung von Brightness/Contrast Color zu Principled BSDF Base Color
    links.new(contrast_node.outputs['Color'], bsdf.inputs['Base Color'])
    # Verbindung von Principled BSDF BSDF zu Material Output Surface
    links.new(bsdf.outputs['BSDF'], output_node.inputs['Surface'])

    • @pd9931
      @pd9931 6 місяців тому +1

      THANKS

    • @shivy_n211
      @shivy_n211 3 місяці тому

      Thank fucking lord.

  • @TheGreatestOnlyOne
    @TheGreatestOnlyOne Рік тому

    Thanks for sharing!

  • @catallaxy
    @catallaxy Рік тому

    Das is ein very nice tutorial!

  • @steedlei1
    @steedlei1 Рік тому +1

    Hi, anyone has idea how to remove (detach) part of the model in blender without effecting the rest part of model. The season I am asking is because we need to remove subject development site and replace with 3D development design model. We have difficulty removing part of blender model (import from 3d google map) without effecting other part (will remove other model and texture map). Anyone has good workaround for this? Thank you very much in advance!

  • @eduardorozo7915
    @eduardorozo7915 Рік тому

    Thanks for the video!!

  • @razern420
    @razern420 11 місяців тому

    Just one question , does this work in southeast east continent too?

  • @911pow
    @911pow 11 місяців тому

    Hey thanks for the vid! Can you make this work with the Plans app from Mac data base? thanks!

  • @geroldwaefler9485
    @geroldwaefler9485 11 місяців тому

    Is this new the API consts now money trough a subscription by Google ??

  • @spearcy
    @spearcy 10 місяців тому +1

    I wonder why you wouldn't prefer to use Google Earth Studio to do the animation, since it has all the speed and value graphing animation tools right there so that you can get a nice smooth animation, and then just bring your rendered Google Earth file into Blender, where you can apply shading to the water (there's a plug-in for that). This seems to involve a lot more steps. Also, in Google Earth Studio, you can add tracking points to any spot where you'll want to add 3d content, and they'll go right into blender as planes that you can switch out with anything (including for masking purposes such as if you want an object to pass behind a building, etc.), and they'll track ideally to your scene.

    • @personofcolour6564
      @personofcolour6564 10 місяців тому

      Can this animation be overlayed in Google Earth?

  • @yoma.emptylands
    @yoma.emptylands 8 місяців тому

    Thanks a lot for your video! Anyone know how to export the textures and model to rhino ?

  • @raoulraoul7129
    @raoulraoul7129 19 днів тому

    You lost me at 1:32. I dont have that addons side bar. Any other method ?

  • @marcusphsuwandi
    @marcusphsuwandi Рік тому

    im new to blender. i dont know how to display ADDON tab bar

  • @shyamsundar1092
    @shyamsundar1092 7 місяців тому +1

    Could you please relink the script . Bcoz thats not in dropbox

    • @xinversive
      @xinversive 7 місяців тому

      check my comment

  • @StefanoOrlando_s
    @StefanoOrlando_s 11 місяців тому +1

    There's no way to have a single texture to apply on a single material? i want to better control specular and roughness. Thanks

    • @zachhoy
      @zachhoy 5 днів тому

      I would like that too.

  • @Minato_Akiyama03
    @Minato_Akiyama03 Рік тому +1

    I want to make a map for Assetto Corsa and for 2D/3D anime, can I import 3D by different sections and connect them? By, parts to parts and fix and change the goofy ah buildings?

    • @ZVCKS261
      @ZVCKS261 Рік тому +1

      Hey mate, I am on the same boat! Wanna join forces?
      I am trying to import my town as I would love to drive virtually into it, and the next step is to connect all the nearby towns to expand my future AC map!

    • @kingcreatez4827
      @kingcreatez4827 Рік тому

      did u do it?
      @@ZVCKS261

    • @jwsb350
      @jwsb350 Рік тому +1

      I am in the same situation as both of you, driving around in my irl town would be sooo cool. Thing is, i barely have the intelligence to figure this stuff out. It seems so hard. Good luck to you and axelkester6046

    • @SYRCX
      @SYRCX 8 місяців тому

      @@jwsb350 same boat here :) only 6 months late

  • @jamierandomgames546
    @jamierandomgames546 3 місяці тому

    Hi, is there a new download link for the script?

  • @Tsanito
    @Tsanito Рік тому

    Where is the "Add-ons" panel?

  • @hoderside7705
    @hoderside7705 Рік тому +2

    Well done! Can you tell me why when I press import on buildings with more details it appears all flat? I've got the premium version as well, what am I doing wrong ?

    • @cgmechanics5855
      @cgmechanics5855  Рік тому

      Sorry! I never had this issue.

    • @martinkapostas1977
      @martinkapostas1977 Рік тому

      does the google map 3D buildings? not ll cities are 3D

    • @profenxx
      @profenxx Рік тому

      Could you solve?

    • @Kadamx
      @Kadamx Рік тому

      Can anyone give me a google api key...... i tried so many times to add my credit card and there's an error not allowing that.... I'll need it just for 10 mins.
      Or if anyone can download the map and send it to me.. That would be a great help😢

  • @PabloSaura27
    @PabloSaura27 Рік тому

    Shall I get a Google Cloud (paying) to follow this video, right?

  • @waxxes_animation498
    @waxxes_animation498 Рік тому

    Can i ask are there cites missing ? Can you gets nairobi city in kenya please

  • @oblivion78644
    @oblivion78644 Рік тому

    Any idea on how to render with cycles properly , I keep getting system out of gpu memory :/ I have an rtx 3070 with 8GB VRAM and 32 GB ram

  • @CG_ART-mt6vj
    @CG_ART-mt6vj 8 місяців тому

    What do you mean by copying and pasting it into a text editor??

  • @TheNei
    @TheNei Рік тому

    NIce!
    Thanks!

  • @elenalan-c8r
    @elenalan-c8r 3 місяці тому

    excuse me what do they mean by portal and company name? ArcGIS login...

  • @trollenz
    @trollenz 11 місяців тому

    Great content ! Thanks. Sub!

  • @vinceofscandal
    @vinceofscandal Рік тому

    where to find arcgis token please ?

  • @DoubleDbababoi
    @DoubleDbababoi 8 місяців тому

    1:08 Why didnt you show how to get them???

  • @realmoonknight
    @realmoonknight 8 місяців тому

    Hey the material script seems to be missing. Could you add it somewhere ?

    • @xinversive
      @xinversive 7 місяців тому

      check my comment

  • @qinghillstudio
    @qinghillstudio Рік тому +1

    cant even install it. blosm not on preference

  • @威虎-r4o
    @威虎-r4o Рік тому

    Hello, what is the different of free Blosm and premium Blosm?? I got a API map key, but it is same problem, "Unable to process the root URI of the 3D Tiles: HTTP Error 403: Forbidden"

    • @cgmechanics5855
      @cgmechanics5855  Рік тому

      Did you activated the key as well? Go again to „get key“ and activate the key. Google will lead you.

    • @Kadamx
      @Kadamx Рік тому

      Am facing the same problem.. And the didn't process the credit card... If you have solutions please let me know.

    • @raulgalets
      @raulgalets 8 місяців тому

      you gotta go to MAP TILES API page and enable it

  • @MrPudamontana
    @MrPudamontana Рік тому +1

    Is it better to upload hight maps from google to unreal engine or blender then send to unreal engine 5???

    • @SalarLumia
      @SalarLumia Рік тому

      can you provide more info about it? I am looking for a solution to model a real city inside unreal Engine 5 very fast and accurately to the reality.

  • @mateuszm2549
    @mateuszm2549 Рік тому

    i downloaded the 3d tiles with buildings with more tetails and i got a flat surface, why is that ?

    • @Art-uz3fk
      @Art-uz3fk 8 місяців тому

      google 3d tiles has limited coverage so it might not exist for that area

  • @IsabelleAnderson-pp5ft
    @IsabelleAnderson-pp5ft 7 місяців тому

    THANK YOUUUUU

  • @emikolaj
    @emikolaj Рік тому

    How to dellete trees

  • @ViensVite
    @ViensVite Рік тому

    Hi, for me sadly when i run the script i get stuck at step 4, forever. Any idea?

    • @cgmechanics5855
      @cgmechanics5855  Рік тому +1

      Wich BlenderVersion?
      There should be a Material option on the N-Panel in the shader editor. Can you try this?

    • @ViensVite
      @ViensVite Рік тому

      @@cgmechanics5855actually with the right version script worked but the result is black I end up with no material 💀

  • @captainofthewhitetower
    @captainofthewhitetower 10 місяців тому

    Man I take some part from Istanbul. It gets rendered like 2D. Why yours is 3D and mine is 2D ?

  • @herysetiawanpurnawali983
    @herysetiawanpurnawali983 Рік тому

    I tried the Google 3D tile but got worse 3D building. Different from you. How could I get the same like in this video?

    • @cgmechanics5855
      @cgmechanics5855  Рік тому

      What city have you chosen?

    • @herysetiawanpurnawali983
      @herysetiawanpurnawali983 Рік тому

      @@cgmechanics5855 Firstly, I followed as your video, Berlin, but different than yours at the Google 3D tile

  • @paulmarcelb.7585
    @paulmarcelb.7585 Рік тому +3

    Hello and thank you for this great video !!! Everything works but when I try to use "Google 3D tiles", I get this message: "Unable to process the root URI of the 3D Tiles: HTTP Error 403: Forbidden"
    Do you know why ?
    FYI, I paid for the premium version of Blosm for blender and I have an API key for Google 3D tiles.

    • @Rivolir
      @Rivolir Рік тому

      Same error for me

    • @Rivolir
      @Rivolir Рік тому +3

      Solved. You need to manualy activate the maps API, in the cloud acount.

    • @erg2054
      @erg2054 Рік тому +1

      how do I do that? Can't find anywhere@@Rivolir

    • @grithedit
      @grithedit Рік тому

      @@Rivolir where is it exactly????'

    • @jasferauman
      @jasferauman Рік тому

      good sire,@@Rivolir where is this "select api maps key and activate it"

  • @AnikenSkiwalker
    @AnikenSkiwalker Рік тому +1

    You can't use the images for commercial use. So what is the point of this?

    • @RonnieMirands
      @RonnieMirands Рік тому

      And even export! So the author of plugin, make his money for we just PLAY like kids lol

  • @HomeCookgabriele
    @HomeCookgabriele 5 місяців тому +1

    when i CLICK IMPORT IT SAYS A VALID DIRECTORY IN THE DATA ISN'T SET ERROR. WHAT THE FUCK MAN. IS NOT WORKING

  • @xzxxx-km4vy
    @xzxxx-km4vy Рік тому

    I want that to be a city builder game

  • @LeBarbier75
    @LeBarbier75 Рік тому +2

    Not specified in your tuto, credit card number is required to create an account on mapbox and Google 3D tiles, even for free account :/ why not spedified ? you can save the time of your viewers dont want to give credit card informations, i lost 10 minute of my time :/ but ty for the tutorial !

    • @cgmechanics5855
      @cgmechanics5855  Рік тому +1

      I wasn't aware that there are people who don't have a credit card. The reasons for that could obviously vary. Had I known, and known that it's such a hot topic, I would have explicitly mentioned it. Some people are really going off about the credit card issue here. However, I don't know of any API service that doesn't require a credit card, even though most of them cost little to nothing. Anyway, you used to be able to insert comments into a UA-cam video after the fact. Now it's going to stay this way.

  • @Kadamx
    @Kadamx Рік тому

    Am facing the ERROR: 403 forbidden
    tried so many times to add my credit card... But there's an error not allowing that.
    Any solution plz

    • @RonnieMirands
      @RonnieMirands Рік тому

      You have to to enable the API, on the google maps page account.

    • @Kadamx
      @Kadamx Рік тому

      @@RonnieMirands tried that so many times. But there's a problem from Google that causes an error every time I try to add my credit card ... So you don't have access to the API

    • @RonnieMirands
      @RonnieMirands Рік тому

      @@Kadamx weird, its working for me. But i thought i could export the maps to other application, and it cant be exported. So now i am stucked too lol

  • @buddysadventuregame1255
    @buddysadventuregame1255 Рік тому

    This is just 9 minutes of
    "Hippity Hoppity your work is now my property"

  • @snjp20
    @snjp20 10 місяців тому

    Hello, I am very impressed with your work, and of course I tried to import my village, but I could not because I do not have a tax code, which is a necessary thing according to Google Maps. So here I am, giving you an offer. What do you think about importing my village, preparing its quality, and giving it to me? This, of course, will not be free. I will give it to you. Opposite

  • @vacpw03
    @vacpw03 Рік тому

    Rarely seen such shit!! Everything was done according to the instructions as in the video (free version) I got the key (paste copy) I got the data from Manhattan all I got was a house with green and blue areas and a few streets. So I definitely won't spend any money on the paid version!!!

  • @matesinku8272
    @matesinku8272 Рік тому

    mapbox wants creditcard info

  • @ypsilantiavanti5603
    @ypsilantiavanti5603 10 днів тому

    doesnt work

  • @mukondeleliratshilavhi5634
    @mukondeleliratshilavhi5634 Рік тому

    i think its just wjat i needed ... no i need to apply...

  • @BobHairEnjoyer
    @BobHairEnjoyer Рік тому +1

    Don't even try it. Even if you choose free version, they want you to create an account for the second key. It's 50$.

  • @samwouldyoukindly5244
    @samwouldyoukindly5244 7 місяців тому +4

    What a joke of a video! Show us how to get the API stuff done! I spent almost a hour trying to get the ArcGIS API to work when you could've made it so much clearer in the video of how to get ArcGIS API, instead of hovering over it!

    • @samwouldyoukindly5244
      @samwouldyoukindly5244 7 місяців тому

      Like i'm so done with your channel best of luck and thanks for wasting so much of my time!

  • @pproestos
    @pproestos Рік тому

    Not recommended for close up renderings. For example rendering from street view, the buildings look awful.

  • @grithedit
    @grithedit Рік тому +1

    Anyone error 400?

    • @svi_ra
      @svi_ra Рік тому

      Bad request

  • @stevenchilders272
    @stevenchilders272 Рік тому

    I tried this once with little success

  • @HomeCookgabriele
    @HomeCookgabriele 5 місяців тому

    A VALID DIRECTORY IN THE DATA ISN'T SET ERROR. YES THANKS. THIS NOT WORKS

  • @elenalan-c8r
    @elenalan-c8r 3 місяці тому

    arcgis access token(;´༎ຶД༎ຶ`)

  • @LXIX_501
    @LXIX_501 9 місяців тому

    it's paid guys don't waste your time . mapbox too

  • @riskiadhitama-j6s
    @riskiadhitama-j6s Рік тому

    וT•N•G•×

  • @TheCrackingSpark
    @TheCrackingSpark 6 місяців тому +1

    Unusable trash, you can't use this unless you pay. Trash tutorial for a trash addon that is totally niche and 100% paywalled. Nice video buddy.

  • @doctordub4501
    @doctordub4501 Рік тому

    bro you are advaaanced please slow down. haha beginner here!
    Peace love and light!

  • @siureksmoka989
    @siureksmoka989 8 місяців тому

    this doesnt work for every placeeeeeeee