lisp to view street views

lisp to view street views

belavyas
Participant Participant
2,871 Views
10 Replies
Message 1 of 11

lisp to view street views

belavyas
Participant
Participant

Hi all,

 

Is there any lisp to view street views by clicking in the DWG file.

 

Thanks in advance.

Bela

0 Likes
2,872 Views
10 Replies
Replies (10)
Message 2 of 11

ВeekeeCZ
Consultant
Consultant

Do you mean Google Street View?

Then probably THIS tool with some info HERE could help.

0 Likes
Message 3 of 11

belavyas
Participant
Participant

No this tool has the same error.

 

Thanks.

0 Likes
Message 4 of 11

ВeekeeCZ
Consultant
Consultant

Would be nice of you if you at least link your other threads that are related to this one so we know WHAT ERROR you're talking about.

 

If you type this into the command-line

(command "browser" "")

do you retrieve the same error?

0 Likes
Message 5 of 11

belavyas
Participant
Participant

yes I do

0 Likes
Message 6 of 11

belavyas
Participant
Participant

 

giving me this notification

 

belavyas_0-1629980990113.png

 

 

 

 

 

0 Likes
Message 7 of 11

ВeekeeCZ
Consultant
Consultant

Then your default browser file association is broken - it's a Windows issue. Something like if you double click on dwg file it won't launch AutoCAD.

Look HERE  how to fix it for Chrome, or find similar for whatever browser you use.

 
0 Likes
Message 8 of 11

DC-MWA
Collaborator
Collaborator

We use this to link objects to google maps in our drawings such as vicmaps etc.

 

(defun C:DO_MAP (/ Project_name link_desc street_address street_name city_name map_link ent)
(setq link_desc "Link to Google Maps")
(initget 1)
(setq street_address (getint "\nEnter street address: "))
(setq street_name (getstring T "\nEnter street or road name <name only>: "))
(setq city_name (getstring T "\nEnter city or town name: "))
(setq map_link (strcat "https://www.google.com/maps/place/" (rtos street_address 2 0) " " street_name ", " city_name ", CA"))
(setq ent (car (entsel "\nSelect Object to Add Hyperlink: ")))
(command "-hyperlink" "insert" "object" ent "" map_link "" link_desc)
(Princ (strcat "\nSelected object is now linked to: " map_link " on google maps."))
);end DO_MAP

0 Likes
Message 9 of 11

belavyas
Participant
Participant

Does not work. When I try to connect to user group in Help menu in Autocad it gives me the same error. Changed the default browser to Google chrome .

 

Need help.

 

Thanks,

 

Bela

0 Likes
Message 10 of 11

ВeekeeCZ
Consultant
Consultant

Check and possibly fix the Registry, look HERE 

0 Likes
Message 11 of 11

Sea-Haven
Mentor
Mentor

I posted elsewhere your other post new it was easy but this is lat long. So may need civ3d.

 

(command "browser" "https://www.google.com.au/maps/@-33.8567844,151.213108,17z")

0 Likes