I got a template from some one else where the orange line is truned on. I wish to turn it off temporally. I did read about the Model ‘Location’ setting but with 2018 there is the geo-loaction setting and no way to turn it off there. Also using a mac with the plugin SolarNorth which isn’t loading, so no way to turn it with that.
edit
did put it directly inside my own plugin for easy switching
def self.toggle_displayNorth_method
if Sketchup.active_model.shadow_info["DisplayNorth"] == false
Sketchup.active_model.shadow_info[“DisplayNorth”] = true
else
Sketchup.active_model.shadow_info[“DisplayNorth”] = false
end
end