๐ŸŒ Introducing โ€œGeoLauncherโ€ โ€“ My New AutoCAD Civil 3D Plugin! ๐Ÿš€

๐ŸŒ Introducing โ€œGeoLauncherโ€ โ€“ My New AutoCAD Civil 3D Plugin! ๐Ÿš€

ankitvardhan123
Contributor Contributor
1,078 Views
6 Replies
Message 1 of 7

๐ŸŒ Introducing โ€œGeoLauncherโ€ โ€“ My New AutoCAD Civil 3D Plugin! ๐Ÿš€

ankitvardhan123
Contributor
Contributor

Instantly Open AutoCAD Points in Google Maps, Earth, or Street View!
This is the first step in my journey to extend the power of hashtag#Civil3D through the Civil3D API & C#, turning complex, repetitive tasks into automated workflows.
โœ… Just ONE click in Civil 3D to open locations in various mapping services and Not require any installation of app as it just a dll which you need to import.
โœ… Auto-detects and transforms complex AutoCAD drawing coordinates to Latitude/Longitude.

โœ… Just load dll and type Command "GMAP" to start using the plugin.
โœ… Effortless to use with a sleek, user-friendly WinForms dialog. It can be used by any of department.
๐Ÿ’ก If youโ€™re passionate about Civil 3D,Dynamo automation, BIM automation, GIS integration, or .NET development, letโ€™s connect and share ideas!

Further i am sharing demo here. For full version you can see the post on linkedin.

https://www.linkedin.com/posts/ankit-vardhan-a6136197_civil3d-civil3d-autodesk-activity-736531621363...

1,079 Views
6 Replies
Replies (6)
Message 2 of 7

RobertEVs
Advisor
Advisor

In order to get a street view it has to be one that Google has driven. There exists a free Lisp program available to get street/map views of Georeferenced Civil3D drawings. 

Lisp here:

(defun c:gsv (/)
(command "UCS" "World")
(if (not (getvar "CGOECS"))()(alert "fail - set coordinate zone first"))
(setq pkpt (getpoint "Select Point to see in Street View"))
(ade_projsetsrc (getvar "CGEOCS"))
(ade_projsetdest "LL84")
(setq cvp (list (car pkpt) (cadr pkpt)))
(setq result (ade_projptforward CVP))
(if (null result)
(alert "\nError in Transformation "))

(setq gsv (strcat "http://maps.google.com/maps?q=&layer=c&cbll=" (rtos (cadr result) 2 8) "," (rtos (car result) 2 8)))

(command "UCS" "P")
(command "browser" gsv)


); close defun

 

 

(view in My Videos)

Message 3 of 7

ankitvardhan123
Contributor
Contributor

May be it is available but i want that all the things must be in a single tool and that should be a dll with a best UI.Even though i have provided the coordinate converter. Further, you can copy paste the link to share the location to anyone.

Message 4 of 7

RobertEVs
Advisor
Advisor

I agree and I like the Google Earth option. Thanks for the plugin and keep creating!

Message 5 of 7

CodeDing
Mentor
Mentor

@ankitvardhan123 ,

 

Good work!

I see you're using Civil 3D, does it work in Vanilla AutoCAD also?

 

Best,

~DD

0 Likes
Message 6 of 7

ankitvardhan123
Contributor
Contributor

Thanks Robert.

0 Likes
Message 7 of 7

ankitvardhan123
Contributor
Contributor

I have tried but not working in vanilla autocad. But can try to make that.Will share if that completed.

0 Likes