Zoom effect on a overhead map

Ask a Question related to Macromedia Director 3D, Design and Development.

  1. #1

    Default Zoom effect on a overhead map

    As part of a prototype for a mobile city guide I am trying to implement a zoom in map, whereby portions of a map can be selected and zoomed in on. Does anyone know of an efficient way of doing this?
    andrewkavanagh Guest

  2. Similar Questions and Discussions

    1. Problem with the zoom effect
      I used the same code, it worked fine once, then I tried it again and it didn't work...so I have no idea.
    2. Overhead of objects
      I'm wondering what the overhead is when creating objects, the project I'm currently working on would require many object creations, and I need to...
    3. Trying to create a smooth zoom effect with AS - stuck
      Hi again, I have never been very good at programming, usually I just plod thought until I hit the right combination. I am stuck on this one. ...
    4. zoom effect?
      Hi, I try to make a zoom effect which a circle act as a magnification go through another image in the background and circle will zoom bigger the...
    5. Does Option Strict On add overhead?
      By turning Option Strict on, is there extra overhead? For example w/o it on the following doesnt get flagged: validxhtml.Attributes.Add("height",...
  3. #2

    Default Re: Zoom effect on a overhead map

    Several ways really but the simplest would be to setup several preset cameras
    in your model and zoom to and from with them.

    something like -

    if ZoomToCamera1 = true then

    Sprite(spriteNum).camera.transform.interpolateTo(( sprite(spriteNum).member.camer
    a[1].transform, 1.5)
    end if


    otterman Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139